Repository: ChatAir/ChatAir-android Branch: master Commit: 27ee19a62c3e Files: 67 Total size: 119.2 KB Directory structure: gitextract_mifrjddi/ ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── .idea/ │ ├── codeStyles/ │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── dbnavigator.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app/ │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src/ │ ├── androidTest/ │ │ └── java/ │ │ └── com/ │ │ └── chatair_android/ │ │ └── ExampleInstrumentedTest.kt │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── com/ │ │ │ └── chatair_android/ │ │ │ ├── ui/ │ │ │ │ └── screens/ │ │ │ │ ├── chat/ │ │ │ │ │ ├── model/ │ │ │ │ │ │ └── Chat.kt │ │ │ │ │ └── recent/ │ │ │ │ │ ├── OnItemClickListener.kt │ │ │ │ │ ├── RecentChatsActivity.kt │ │ │ │ │ └── RecentChatsListAdapter.kt │ │ │ │ ├── contacts/ │ │ │ │ │ ├── ContactsActivity.kt │ │ │ │ │ ├── ContactsListAdapter.kt │ │ │ │ │ └── models/ │ │ │ │ │ └── Contact.kt │ │ │ │ ├── forgot_password/ │ │ │ │ │ └── ForgotPasswordActivity.kt │ │ │ │ ├── login/ │ │ │ │ │ └── LoginActivity.kt │ │ │ │ ├── main/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── splash/ │ │ │ │ └── SplashActivity.kt │ │ │ └── utils/ │ │ │ └── ktx.kt │ │ └── res/ │ │ ├── drawable/ │ │ │ ├── background_message_partner.xml │ │ │ ├── background_message_sender.xml │ │ │ ├── ic_chat_white.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_more_vert_24dp.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_send.xml │ │ │ ├── ic_user.xml │ │ │ └── ic_user_placeholder.xml │ │ ├── drawable-v24/ │ │ │ └── ic_launcher_foreground.xml │ │ ├── layout/ │ │ │ ├── activity_chat.xml │ │ │ ├── activity_contacts.xml │ │ │ ├── activity_forgot_password.xml │ │ │ ├── activity_login.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_recent_chats.xml │ │ │ ├── activity_splash.xml │ │ │ ├── list_item_contact.xml │ │ │ ├── list_item_recent_chat.xml │ │ │ ├── row_message_partner.xml │ │ │ └── row_message_sender.xml │ │ ├── menu/ │ │ │ ├── contacts_toolbar_menu.xml │ │ │ └── recent_chats_toolbar_menu.xml │ │ ├── mipmap-anydpi-v26/ │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ └── values/ │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test/ │ └── java/ │ └── com/ │ └── chatair_android/ │ └── ExampleUnitTest.kt ├── build.gradle ├── designs/ │ └── ChatAir Ui.xd ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/pull_request_template.md ================================================ ## Description - Description of issue - Output before solved - Changes in Issue - Output of solved issue ## Type of Changes? Just put an x in the [ ] which are valid. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Testing Suites ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. - [ ] ./gradlew assembleDebug assembleRelease ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings ================================================ FILE: .gitignore ================================================ *.iml .gradle /local.properties /.idea/caches /.idea/libraries /.idea/modules.xml /.idea/workspace.xml /.idea/navEditor.xml /.idea/assetWizardSettings.xml .DS_Store /build /captures .externalNativeBuild .cxx ================================================ FILE: .idea/codeStyles/Project.xml ================================================
xmlns:android ^$
xmlns:.* ^$ BY_NAME
.*:id http://schemas.android.com/apk/res/android
.*:name http://schemas.android.com/apk/res/android
name ^$
style ^$
.* ^$ BY_NAME
.* http://schemas.android.com/apk/res/android ANDROID_ATTRIBUTE_ORDER
.* .* BY_NAME
================================================ FILE: .idea/codeStyles/codeStyleConfig.xml ================================================ ================================================ FILE: .idea/dbnavigator.xml ================================================ ================================================ FILE: .idea/gradle.xml ================================================ ================================================ FILE: .idea/misc.xml ================================================ ================================================ FILE: .idea/runConfigurations.xml ================================================ ================================================ FILE: .idea/vcs.xml ================================================ ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Guidelines ### Submitting Code and Documentation Changes Our process for accepting changes operates by [Pull Request (PR)](https://help.github.com/articles/about-pull-requests/) and has a few steps: 1. If you haven't submitted anything before, and you aren't (yet!) a member of our organization, **fork and clone** the repo: $ git clone git@github.com:/.git Organization members should clone the upstream repo, instead of working from a personal fork: $ git clone git@github.com:chatair/.git 1. Create a **new branch** for the changes you want to work on. Choose a topic for your branch name that reflects the change: $ git checkout -b 1. **Create or modify the files** with your changes. If you want to show other people work that isn't ready to merge in, commit your changes then create a pull request (PR) with _WIP_ or _Work In Progress_ in the title. https://github.com/chatair//pull/new/master 1. Once your changes are ready for final review, commit your changes then modify or **create your pull request (PR)**, assign as a reviewer or ping (using "`@`") a Lieutenant (someone able to merge in PRs) active on the project (all Lieutenants can be pinged via `@chatair/lieutenants`) 1. Allow others sufficient **time for review and comments** before merging. We make use of GitHub's review feature to comment in-line on PRs when possible. There may be some fixes or adjustments you'll have to make based on feedback. 1. Once you have integrated comments, or waited for feedback, a Lieutenant should merge your changes in! ## Commit Style ### Message Structure Commit messages should be in the following format: # A brief description of changes on one line ### Some **DONT's** - Don't use Hungarian Notation like `mContext` `mCount` etc - Don't use underscores in variable names - All constants should be CAPS. e.g `MINIMUM_TIMEOUT_ERROR_EXTERNAL` ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ ![](https://raw.githubusercontent.com/ChatAir/ChatAir-Android/master/images/ChatAir_Logo.jpg) # ChatAir A highly advance featured chat app in android using Firestore [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://wajahatkarim.com) ## Why this project and a chat platform? In this era of the social media craze and internet age, where smartphones have become a core part in peoples' lives. And with millions monthly active users on advanced chat apps such as Facebook Messenger, WhatsApp, WeChat, Telegram etc, we (consumers) have started taking these awesome features as for granted. This have become a trouble and headache for indie developers (especially those who provide development services or freelancing) to create such feature-rich platforms in constrained time. So, *ChatAir* is an open-source feature-rich chat platform (initially for Android) using Firebase's Cloud Firestore database as backend. Android Developers can easily use this platform in their apps and integrate highly advanced feature-rich chat system within a short time. ## Why Cloud Firestore? Cloud Firestore is an extended feature of Google Firebase and a real-time document-collection based database service that is an excellent choice if you don’t want to host your own server. With Firestore, you can have our demo chat app setup and running in under 30 minutes. Firestore has a powerful dashboard that gives you access to your data and a REST API if you need to access data from your server. Some of the advantages of Cloud Firestore include: * Self-Hosted * Scalable * Flexible Authentication * Realtime & Fast * Pay as you go including Free Tier * Cross platform SDKs ## Feature List Here's a list of features that we plan to include overtime. - [ ] Authentication (Anonymous, Email, Facebook, Twitter, Google+) - [ ] Phone Number Authentication - [ ] Text Messages - [ ] Image Messages - [ ] GIF Messages - [ ] Multiple Image Messages - [ ] Location Messages - [ ] Audio Messages - [ ] Video Messages - [ ] Link/URL Preview Messages - [ ] Reply Messages - [ ] Emojis Support - [ ] Online/Last Active Status - [ ] Message Read/Receipt Ticks - [ ] Unread Messages Count - [ ] Group Chats - [ ] Push Notifications - [ ] Typing Indicator - [ ] User Mentions - [ ] Chat / Group Media, Documents, and Links - [ ] Restore/Export from and to CSV File - [ ] Chat Heads - [ ] Block/Unblock Users # V1 Features - [ ] Authentication (Anonymous, Email, Facebook, Twitter, Google+) - [ ] Phone Number Authentication - [ ] Text Messages # Get involved! We're very excited about the project and we're looking for other people to get involved. Over time we would like to make the best messaging framework for mobile. Help is always welcome. The more is done the better it gets! ## Contribution Guidelines Before contributing be sure to check out the [CONTRIBUTION](https://github.com/ChatAir/ChatAir-android/blob/master/CONTRIBUTING.md) guidelines. ## Communication Available Communication Channels: * [Slack](https://chatair.slack.com) # License Copyright 2019 Chat Air Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: app/.gitignore ================================================ /build ================================================ FILE: app/build.gradle ================================================ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig { applicationId "com.chatair_android" minSdkVersion 15 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) /* First party dependencies */ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.core:core-ktx:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'com.google.android.material:material:1.2.0-alpha01' /* Testing dependencies */ testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test:runner:1.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' } ================================================ FILE: app/proguard-rules.pro ================================================ # Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile ================================================ FILE: app/src/androidTest/java/com/chatair_android/ExampleInstrumentedTest.kt ================================================ package com.chatair_android import androidx.test.platform.app.InstrumentationRegistry import androidx.test.ext.junit.runners.AndroidJUnit4 import org.junit.Test import org.junit.runner.RunWith import org.junit.Assert.* /** * Instrumented test, which will execute on an Android device. * * See [testing documentation](http://d.android.com/tools/testing). */ @RunWith(AndroidJUnit4::class) class ExampleInstrumentedTest { @Test fun useAppContext() { // Context of the app under test. val appContext = InstrumentationRegistry.getInstrumentation().targetContext assertEquals("com.chatair_android", appContext.packageName) } } ================================================ FILE: app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/chat/model/Chat.kt ================================================ package com.chatair_android.ui.screens.chat data class Chat(val name: String, val messageSnippet: String) ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/chat/recent/OnItemClickListener.kt ================================================ package com.chatair_android.ui.screens.chat.recent import com.chatair_android.ui.screens.chat.Chat interface OnItemClickListener { fun onItemClicked(chat: Chat) } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/chat/recent/RecentChatsActivity.kt ================================================ package com.chatair_android.ui.screens.chat.recent import android.os.Bundle import android.util.Log import android.view.Menu import android.view.MenuItem import android.view.View import androidx.appcompat.app.AppCompatActivity import androidx.recyclerview.widget.LinearLayoutManager import com.chatair_android.R import com.chatair_android.ui.screens.chat.Chat import com.chatair_android.ui.screens.contacts.ContactsActivity import com.chatair_android.utils.gotoActivity import com.chatair_android.utils.showLongToast import kotlinx.android.synthetic.main.activity_recent_chats.* class RecentChatsActivity : AppCompatActivity(), OnItemClickListener { companion object { private val TAG: String = RecentChatsActivity::class.java.simpleName } override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_recent_chats) setSupportActionBar(toolbar_recent_chats) recentChatsRV.layoutManager = LinearLayoutManager(this) recentChatsRV.adapter = RecentChatsListAdapter(getDummyRecentChats(), this) } override fun onCreateOptionsMenu(menu: Menu?): Boolean { val menuInflater = menuInflater menuInflater.inflate(R.menu.recent_chats_toolbar_menu, menu) return super.onCreateOptionsMenu(menu) } override fun onOptionsItemSelected(item: MenuItem): Boolean { when (item.itemId) { R.id.action_option_zero -> showLongToast("Option 0 clicked") R.id.action_option_one -> showLongToast("Option 1 clicked") R.id.action_option_two -> showLongToast("Option 2 clicked") else -> Log.d(TAG, "Default case of onOptionsItemSelected") } return super.onOptionsItemSelected(item) } private fun getDummyRecentChats(): List { val recentChats = mutableListOf() for (i in 0..20) { recentChats.add(Chat(name = "User Name $i", messageSnippet = "Message")) } return recentChats } override fun onItemClicked(chat: Chat) { showLongToast("Open the Chat Screen for chat with ${chat.name} ") } fun openContactsActivity(view: View) { this.gotoActivity(view.context, ContactsActivity::class.java) } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/chat/recent/RecentChatsListAdapter.kt ================================================ package com.chatair_android.ui.screens.chat.recent import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.TextView import androidx.recyclerview.widget.RecyclerView import com.chatair_android.R import com.chatair_android.ui.screens.chat.Chat class RecentChatsListAdapter(private val chats: List, val itemClickListener: OnItemClickListener) : RecyclerView.Adapter() { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecentChatVH { val view = LayoutInflater.from(parent.context).inflate(R.layout.list_item_recent_chat, parent, false) return RecentChatVH(view) } override fun getItemCount(): Int { return chats.size } override fun onBindViewHolder(holder: RecentChatVH, position: Int) { holder.bind(chats[position], itemClickListener) } class RecentChatVH(itemView: View) : RecyclerView.ViewHolder(itemView) { private val nameTextView: TextView = itemView.findViewById(R.id.userNameTextView) private val messageSnippetTextView: TextView = itemView.findViewById(R.id.messageSnippetTextView) fun bind(chat: Chat, clickListener: OnItemClickListener) { nameTextView.text = chat.name messageSnippetTextView.text = chat.messageSnippet itemView.setOnClickListener { clickListener.onItemClicked(chat) } } } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/contacts/ContactsActivity.kt ================================================ package com.chatair_android.ui.screens.contacts import android.app.SearchManager import android.content.Context import android.os.Bundle import android.view.Menu import androidx.appcompat.app.AppCompatActivity import androidx.appcompat.widget.SearchView import androidx.recyclerview.widget.LinearLayoutManager import com.chatair_android.ui.screens.contacts.models.Contact import kotlinx.android.synthetic.main.activity_contacts.* class ContactsActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(com.chatair_android.R.layout.activity_contacts) setSupportActionBar(toolbar) supportActionBar?.setDisplayHomeAsUpEnabled(true) contactsList.layoutManager = LinearLayoutManager(this) contactsList.adapter = ContactsListAdapter(getDummyContacts()) } override fun onCreateOptionsMenu(menu: Menu): Boolean { val menuInflater = menuInflater menuInflater.inflate(com.chatair_android.R.menu.contacts_toolbar_menu, menu) val searchItem = menu.findItem(com.chatair_android.R.id.action_search) val searchManager = this@ContactsActivity.getSystemService(Context.SEARCH_SERVICE) as SearchManager var searchView: SearchView? = null if (searchItem != null) { searchView = searchItem.actionView as SearchView } searchView?.setSearchableInfo(searchManager.getSearchableInfo(this@ContactsActivity.componentName)) return super.onCreateOptionsMenu(menu) } private fun getDummyContacts(): List { val contacts = mutableListOf() for (i in 0..20) { contacts.add(Contact(name = "User $i", status = "Online")) } return contacts } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/contacts/ContactsListAdapter.kt ================================================ package com.chatair_android.ui.screens.contacts import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.TextView import androidx.recyclerview.widget.RecyclerView import com.chatair_android.R import com.chatair_android.ui.screens.contacts.models.Contact class ContactsListAdapter(private val contacts: List) : RecyclerView.Adapter() { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder { val view = LayoutInflater.from(parent.context).inflate(R.layout.list_item_contact, parent, false) return ViewHolder(view) } override fun getItemCount(): Int { return contacts.size } override fun onBindViewHolder(holder: ViewHolder, position: Int) { holder.bind(contacts[position]) } class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { private val nameTextView: TextView = itemView.findViewById(R.id.userNameTextView) private val statusTextView: TextView = itemView.findViewById(R.id.statusTextView) fun bind(contact: Contact) { nameTextView.text = contact.name statusTextView.text = contact.status } } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/contacts/models/Contact.kt ================================================ package com.chatair_android.ui.screens.contacts.models data class Contact(val name: String, val status: String) ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/forgot_password/ForgotPasswordActivity.kt ================================================ package com.chatair_android.ui.screens.forgot_password import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import com.chatair_android.R import kotlinx.android.synthetic.main.activity_forgot_password.* class ForgotPasswordActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_forgot_password) setSupportActionBar(toolbar_forgot_password) supportActionBar?.setDisplayHomeAsUpEnabled(true) supportActionBar?.setDisplayShowTitleEnabled(false) } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/login/LoginActivity.kt ================================================ package com.chatair_android.ui.screens.login import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import com.chatair_android.R class LoginActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_login) } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/main/MainActivity.kt ================================================ package com.chatair_android.ui.screens.main import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import com.chatair_android.R class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) } } ================================================ FILE: app/src/main/java/com/chatair_android/ui/screens/splash/SplashActivity.kt ================================================ package com.chatair_android.ui.screens.splash import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.os.Handler import com.chatair_android.ui.screens.main.MainActivity import com.chatair_android.R import com.chatair_android.ui.screens.chat.recent.RecentChatsActivity import com.chatair_android.ui.screens.contacts.ContactsActivity import com.chatair_android.ui.screens.login.LoginActivity import com.chatair_android.utils.gotoActivity class SplashActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_splash) Handler().postDelayed({ this.gotoActivity(this@SplashActivity, LoginActivity::class.java) }, 4000) } } ================================================ FILE: app/src/main/java/com/chatair_android/utils/ktx.kt ================================================ package com.chatair_android.utils import android.content.Context import android.content.Intent import android.widget.Toast import androidx.appcompat.app.AppCompatActivity fun AppCompatActivity.gotoActivity(context: Context, cls: Class<*>) { this.startActivity(Intent(context, cls)) } fun Context.showLongToast(message: String) { Toast.makeText(this, message, Toast.LENGTH_LONG).show() } ================================================ FILE: app/src/main/res/drawable/background_message_partner.xml ================================================ ================================================ FILE: app/src/main/res/drawable/background_message_sender.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_chat_white.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_launcher_background.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_more_vert_24dp.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_search.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_send.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_user.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_user_placeholder.xml ================================================ ================================================ FILE: app/src/main/res/drawable-v24/ic_launcher_foreground.xml ================================================ ================================================ FILE: app/src/main/res/layout/activity_chat.xml ================================================ ================================================ FILE: app/src/main/res/layout/activity_contacts.xml ================================================ ================================================ FILE: app/src/main/res/layout/activity_forgot_password.xml ================================================ ================================================ FILE: app/src/main/res/layout/activity_login.xml ================================================