All Projects → GetStream → android-chat-tutorial

GetStream / android-chat-tutorial

Licence: BSD-3-Clause license
Sample apps for the Stream Chat Android SDK's official tutorial

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to android-chat-tutorial

talkjs-examples
TalkJS (https://talkjs.com) examples
Stars: ✭ 60 (+36.36%)
Mutual labels:  messaging, chat-api, chat-sdk
stream-chat-ruby
Stream Chat official Ruby API Client
Stars: ✭ 25 (-43.18%)
Mutual labels:  chat-api, chat-sdk
numspy
A python module for sending free sms as well as finding details of mobile number via website Way2sms.
Stars: ✭ 57 (+29.55%)
Mutual labels:  messaging, messages
Qmchatviewcontroller Ios
An elegant ready to go chat view controller for iOS applications
Stars: ✭ 75 (+70.45%)
Mutual labels:  messaging, messages
Chat Sdk Android
Chat SDK Android - Open Source Mobile Messenger
Stars: ✭ 1,496 (+3300%)
Mutual labels:  messaging, chat-sdk
godsend
A simple and eloquent workflow for streaming messages to micro-services.
Stars: ✭ 15 (-65.91%)
Mutual labels:  stream, messaging
Chatkit
Android library. Flexible components for chat UI implementation with flexible possibilities for styling, customizing and data management. Made by Stfalcon
Stars: ✭ 3,496 (+7845.45%)
Mutual labels:  messaging, messages
Twitch Js
A community-centric, community-supported version of tmi.js
Stars: ✭ 225 (+411.36%)
Mutual labels:  stream, messaging
azure-event-hubs-java
☁️ Java client library for Azure Event Hubs
Stars: ✭ 49 (+11.36%)
Mutual labels:  stream, messaging
Stream Chat Android
Stream Chat official Android SDK. The tutorial covers how to build your own chat experience using either Java or Kotlin.
Stars: ✭ 165 (+275%)
Mutual labels:  messaging, messages
Libzmq
ZeroMQ core engine in C++, implements ZMTP/3.1
Stars: ✭ 7,418 (+16759.09%)
Mutual labels:  stream, messaging
Azure Event Hubs
☁️ Cloud-scale telemetry ingestion from any stream of data with Azure Event Hubs
Stars: ✭ 233 (+429.55%)
Mutual labels:  stream, messaging
qpid-python
Mirror of Apache Qpid Python
Stars: ✭ 15 (-65.91%)
Mutual labels:  messaging
papilo
DEPRECATED: Stream data processing micro-framework
Stars: ✭ 24 (-45.45%)
Mutual labels:  stream
xbvr
Tool to organize and stream your VR porn library
Stars: ✭ 186 (+322.73%)
Mutual labels:  stream
mnm-hammer
mnm implements TMTP protocol. Let Internet sites message members directly, instead of unreliable, insecure email. Contributors welcome! (Client)
Stars: ✭ 66 (+50%)
Mutual labels:  messaging
SensorNode
SensorNode-client application for IOTA.
Stars: ✭ 35 (-20.45%)
Mutual labels:  stream
AnimeDLR
AnimeDLR
Stars: ✭ 47 (+6.82%)
Mutual labels:  stream
dot
distributed data sync with operational transformation/transforms
Stars: ✭ 73 (+65.91%)
Mutual labels:  stream
TweakIt-Desktop
An Android Debugging Application
Stars: ✭ 33 (-25%)
Mutual labels:  stream

Android Chat Tutorial Sample

This repository allows you to check the result after completing each step described in the Android Chat Tutorial. It contains samples written in both Kotlin (samplekotlin module) and Java (samplejava module). For more Android Chat examples, see the Github repo for the SDK and the UI Components sample app in it.

Already all-in on Jetpack Compose? Check out the tutorial repo of our Compose UI Components instead.

The project is pre-configured with a shared Stream account for testing purposes. You can learn more about Stream Chat here, and then sign up for an account and obtain your own keys here.

Quick start

  1. Clone the repository
  2. Open the project in Android Studio
  3. Run the samplekotlin or samplejava configuration
  4. Make sure to check the Details section below for customizations

Details

The sample apps consist of two screens:

  • MainActivity: Shows the list of available channels.
  • ChannelActivity: Shows the selected channel view, which includes the header, message list, and message input view.

Each module contains multiple ChannelActivity implementations, which correspond to the steps of the tutorial. You can easily swap them by changing the setOnChannelClickListener located in MainActivity:

channelListView.setOnChannelClickListener { channel ->
    // open the channel activity
    startActivity(ChannelActivity.newIntent(this, channel))
}

Currently, you can choose from four different ChannelActivity implementations:

  • ChannelActivity - a basic Message List implementation
  • ChannelActivity2 - includes a new MessageListView style and custom attachment type
  • ChannelActivity4 - includes a custom Typing Header component created with the Low-Level Client library
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].