Kotlin
Send a message
Time to send the first message.
To send a message register a callback inside onCreate method:
findViewById<View>(R.id.sendMessageButton).setOnClickListener { sendMessage() }
Add sendMessage method inside MainActivity:
The above method hides the keyboard, clears the text field and sends the message.
Now in the MainActivity add the missing hideKeyboard method - the utility method that hides Android system keyboard:
You'll notice that, although the message was sent, the conversation doesn't include it. Let's do that in the next step.
Creating an Android chat app
Create a Android application that enables users to message each other using the Android Client SDK and Kotlin.
Steps
1
Introduction to this task2
Prerequisites3
Create a Vonage Application4
Create a conversation5
Create the users6
Add users to the conversation7
Generate JWTs8
Create an Android project9
Add permissions10
Build main screen11
Initialize the client12
Fetch the conversation13
Fetch conversation events14
Send a message15
Receive new messages16
What's next?