C# Class ExamplesChat.Android.ChatAppAndroid

All NetworkComms.Net implementation can be found here and in ChatAppBase
Inheritance: ChatAppBase
Afficher le fichier Open project: MarcFletcher/NetworkComms.Net Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

ChatAppAndroid() public méthode

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
Résultat System

ClearChatHistory() public méthode

Clear all previous chat history
public ClearChatHistory ( ) : void
Résultat void

ClearInputLine() public méthode

Clears the input text box
public ClearInputLine ( ) : void
Résultat void

ShowMessage() public méthode

Ouput message on error
public ShowMessage ( string message ) : void
message string Message to be output
Résultat void