C# Class ExamplesChat.Android.ChatAppAndroid

All NetworkComms.Net implementation can be found here and in ChatAppBase
Inheritance: ChatAppBase
显示文件 Open project: MarcFletcher/NetworkComms.Net Class Usage Examples

Public Methods

Method Description
AppendLineToChatHistory ( string message ) : void

Append the provided message to the chatBox text box.

ChatAppAndroid ( Android.Content.Context parentContext, Android.Widget.TextView chatHistory, Android.Widget.AutoCompleteTextView input ) : System

Constructor for the Android chat app.

ClearChatHistory ( ) : void

Clear all previous chat history

ClearInputLine ( ) : void

Clears the input text box

ShowMessage ( string message ) : void

Ouput message on error

Method Details

AppendLineToChatHistory() public method

Append the provided message to the chatBox text box.
public AppendLineToChatHistory ( string message ) : void
message string Message to be appended
return void

ChatAppAndroid() public method

Constructor for the Android chat app.
public ChatAppAndroid ( Android.Content.Context parentContext, Android.Widget.TextView chatHistory, Android.Widget.AutoCompleteTextView input ) : System
parentContext Android.Content.Context
chatHistory Android.Widget.TextView
input Android.Widget.AutoCompleteTextView
return System

ClearChatHistory() public method

Clear all previous chat history
public ClearChatHistory ( ) : void
return void

ClearInputLine() public method

Clears the input text box
public ClearInputLine ( ) : void
return void

ShowMessage() public method

Ouput message on error
public ShowMessage ( string message ) : void
message string Message to be output
return void