├── .editorconfig ├── .github ├── pull_request_template.md └── workflows │ └── android.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── spotless.gradle ├── spotless.license.kt ├── windowmanager-chat-compose ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── getstream │ │ └── example │ │ └── windowmanager │ │ └── chat │ │ └── compose │ │ ├── ChatComposeApp.kt │ │ ├── ui │ │ ├── main │ │ │ ├── MainActivity.kt │ │ │ └── MainScreen.kt │ │ └── message │ │ │ ├── MessagesActivity.kt │ │ │ └── MessagesScreen.kt │ │ └── util │ │ └── WindowSize.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── windowmanager-chat ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── getstream │ │ └── example │ │ └── windowmanager │ │ └── chat │ │ ├── ChatApp.kt │ │ ├── ui │ │ ├── BindingAdapters.kt │ │ └── MainActivity.kt │ │ └── util │ │ ├── SizeUtils.kt │ │ └── WindowSize.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml └── windowmanager-example ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── kotlin └── io │ └── getstream │ └── example │ └── windowmanager │ ├── FoldingFeatureExtensions.kt │ └── MainActivity.kt └── res ├── drawable-v24 └── ic_launcher_foreground.xml ├── drawable └── ic_launcher_background.xml ├── layout └── activity_main.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-mdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── values-night └── themes.xml └── values ├── colors.xml ├── strings.xml └── themes.xml /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | [*] 3 | # Most of the standard properties are supported 4 | indent_size=4 5 | max_line_length=100 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Guidelines 2 | Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. 3 | 4 | ### Types of changes 5 | What types of changes does your code introduce? 6 | 7 | - [ ] Bugfix (non-breaking change which fixes an issue) 8 | - [ ] New feature (non-breaking change which adds functionality) 9 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 10 | 11 | ### Preparing a pull request for review 12 | Ensure your change is properly formatted by running: 13 | 14 | ```gradle 15 | $ ./gradlew spotlessApply 16 | ``` 17 | 18 | Please correct any failures before requesting a review. -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- 1 | name: Android CI 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | pull_request: 7 | branches: [ main ] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | 15 | - name: set up JDK 16 | uses: actions/setup-java@v1 17 | with: 18 | java-version: 11 19 | 20 | - name: Cache Gradle and wrapper 21 | uses: actions/cache@v2 22 | with: 23 | path: | 24 | ~/.gradle/caches 25 | ~/.gradle/wrapper 26 | key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} 27 | restore-keys: | 28 | ${{ runner.os }}-gradle- 29 | - name: Make Gradle executable 30 | run: chmod +x ./gradlew 31 | 32 | - name: Build with Gradle 33 | run: ./gradlew build -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | /.idea 18 | .gradle/ 19 | build/ 20 | 21 | # Local configuration file (sdk path, etc) 22 | local.properties 23 | 24 | # Proguard folder generated by Eclipse 25 | proguard/ 26 | 27 | # Log Files 28 | *.log 29 | 30 | # Android Studio Navigation editor temp files 31 | .navigation/ 32 | 33 | # Android Studio captures folder 34 | captures/ 35 | 36 | # Intellij 37 | *.iml 38 | .idea/workspace.xml 39 | .idea/tasks.xml 40 | .idea/gradle.xml 41 | .idea/dictionaries 42 | .idea/libraries 43 | app/.idea/ 44 | 45 | # Mac 46 | *.DS_Store 47 | 48 | # Keystore files 49 | *.jks 50 | 51 | # External native build folder generated in Android Studio 2.2 and later 52 | .externalNativeBuild 53 | 54 | # Google Services (e.g. APIs or Firebase) 55 | google-services.json 56 | 57 | # Freeline 58 | freeline.py 59 | freeline/ 60 | freeline_project_description.json 61 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## How to contribute 2 | We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow. 3 | 4 | ## Preparing a pull request for review 5 | Ensure your change is properly formatted by running: 6 | 7 | ```gradle 8 | ./gradlew spotlessApply 9 | ``` 10 | 11 | Then dump binary API of this library that is public in sense of Kotlin visibilities and ensures that the public binary API wasn't changed in a way that make this change binary incompatible. 12 | 13 | ```gradle 14 | ./gradlew apiDump 15 | ``` 16 | 17 | Please correct any failures before requesting a review. 18 | 19 | ## Code reviews 20 | All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) for more information on using pull requests. 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Foldable Chat Android

2 | 3 |

4 | License 5 | API 6 | Build Status 7 |

8 | 9 |

10 | A foldable chat Android demonstrates adaptive and responsive UIs with Jetpack WindowManager API.
11 | 12 |

13 | 14 | ## Overview 15 | This demo project demonstrates dual-screen devices are portable devices with two symmetric screens that work together in unique ways to provide productivity in a flexible form factor. For more details, you can check it out [Introduction to dual-screen devices](https://docs.microsoft.com/en-us/dual-screen/introduction). 16 | 17 | ## Learn More about WindowManager 18 | If you would like to learn more about the WindowManager API, check out the resources below: 19 | - [Exploring Jetpack WindowManager for Foldable Devices](https://getstream.io/blog/jetpack-windowmanager-foldable/). 20 | - [Youtube Tutorial - Exploring Jetpack WindowManager to Support Foldable Devices](https://www.youtube.com/watch?v=6NHs0n8wNsA) 21 | 22 | ## Pre-requisites 23 | - Android SDK 31 24 | - [Android Studio Arctic Fox](https://developer.android.com/studio) or higher 25 | - [Android Gradle Plugin 7.0.1+](https://developer.android.com/studio/releases/gradle-plugin#7-0-0) and **Java 11** 26 | - The [Android Emulator v30.0.6+](https://developer.android.com/studio/releases/emulator#30-0-26) includes foldables support 27 | - [Surface Duo 2 emulator](https://docs.microsoft.com/en-us/dual-screen/android/emulator/surface-duo-download?tabs=mac#install-and-run-the-sdk-and-emulator) 28 | 29 | ## Install and run the Foldable Emulator 30 | To get started, you need to install the Foldable emulator. This project uses **Surface Duo 2 emulator**, and you can check it out the links below: 31 | - [Download and install the Surface Duo emulator image](https://docs.microsoft.com/en-us/dual-screen/android/emulator/surface-duo-download?tabs=mac#download-and-install-the-surface-duo-emulator-image). 32 | - [Get started with the Surface Duo 2 emulator](https://docs.microsoft.com/en-us/dual-screen/android/emulator/get-started). 33 | 34 | Screen Shot 2021-12-28 at 10 07 14 AM 35 | 36 | ## Jetpack WindowManager 37 | The [Jetpack WindowManager](https://developer.android.com/jetpack/androidx/releases/window) library targets foldable devices and enables application developers to support new device form factors and multi-window environments. You can find Jetpack WindowManager information in the Guide: [Learn about foldables](https://developer.android.com/guide/topics/large-screens/learn-about-foldables). 38 | 39 | ### Including on your project 40 | Add the below dependencies to your `build.gradle` file. 41 | 42 | ```gradle 43 | dependencies { 44 | implementation "androidx.window:window:1.0.0" 45 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2" 46 | } 47 | ``` 48 | 49 | 50 | 51 | ## WindowManager Example 52 | [WindowManager Example](https://github.com/GetStream/foldable-chat-android/tree/main/windowmanager-example) module shows how to calculate the screen size and determine device postures with Jetpack WindowManager. You can also refer to the links below for additional help: 53 | - [Exploring Jetpack WindowManager for Foldable Devices](https://getstream.io/blog/jetpack-windowmanager-foldable/) 54 | - [Support foldable and dual-screen devices with Jetpack WindowManager](https://developer.android.com/codelabs/android-window-manager-dual-screen-foldables#2) 55 | - [Unbundling the WindowManager](https://medium.com/androiddevelopers/unbundling-the-windowmanager-fa060adb3ce9) 56 | - [Migrate your UI to responsive layouts](https://developer.android.com/guide/topics/large-screens/migrate-to-responsive-layouts) 57 | 58 | ### Preview 59 | ![example](https://user-images.githubusercontent.com/24237865/147902922-9c790bd6-4feb-420a-a8e1-52082662c779.png) 60 | 61 | 62 | 63 | 64 | ## WindowManager Chat 65 | [WindowManager Chat](https://github.com/GetStream/foldable-chat-android/tree/main/windowmanager-chat) module demonstrates how to build responsive chat UIs with XML layout with [Stream Chat SDK](https://getstream.io/tutorials/android-chat/). You can also refer to the links below for additional help: 66 | - [Exploring Jetpack WindowManager to Support Foldable Devices]() 67 | - [Android Chat Messaging Tutorial](https://getstream.io/tutorials/android-chat/) 68 | 69 | ### Preview 70 | ![example](https://user-images.githubusercontent.com/24237865/148728601-85ab2f45-fc0b-45a3-9bc4-e39207b6a552.png) 71 | 72 | 73 | 74 | ## WindowManager Chat Compose 75 | [WindowManager Chat Compose](https://github.com/GetStream/foldable-chat-android/tree/main/windowmanager-chat-compose) module demonstrates how to build responsive chat UIs with [Stream Jetpack Compose SDK](https://getstream.io/chat/compose/tutorial/). You can also refer to the links below for additional help: 76 | - [Exploring Jetpack WindowManager to Support Foldable Devices]() 77 | - [Compose Chat Messaging Tutorial](https://getstream.io/chat/compose/tutorial/) 78 | 79 | ### Preview 80 | ![showcase](https://user-images.githubusercontent.com/24237865/147902734-a395261f-d2e4-4151-a2ae-53cbd0964355.png) 81 | 82 | ## Butterfly 83 | 84 | 85 | 86 | 87 | 88 | If you're looking for useful APIs for Jetpack WindowManager, check out the [Butterfly](https://github.com/getStream/butterfly). The Butterfly helps you to build adaptive and responsive UIs for Android with Jetpack WindowManager. Also, it supports useful functions for Jetpack Compose and LiveData integration. 89 | 90 | ## Find this library useful? ❤️ 91 | 92 | Support it by joining __[stargazers](https://github.com/getStream/foldable-chat-android/stargazers)__ for this repository. ⭐️
93 | Also, follow **[Stream](https://twitter.com/getstream_io)** on Twitter for our next creations! 94 | 95 | # License 96 | ```xml 97 | Copyright 2022 Stream.IO, Inc. All Rights Reserved. 98 | 99 | Licensed under the Apache License, Version 2.0 (the "License"); 100 | you may not use this file except in compliance with the License. 101 | You may obtain a copy of the License at 102 | 103 | http://www.apache.org/licenses/LICENSE-2.0 104 | 105 | Unless required by applicable law or agreed to in writing, software 106 | distributed under the License is distributed on an "AS IS" BASIS, 107 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 108 | See the License for the specific language governing permissions and 109 | limitations under the License. 110 | ``` 111 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext { 3 | compose_version = '1.1.0-alpha04' 4 | window_version = '1.0.0' 5 | } 6 | } 7 | plugins { 8 | id 'com.android.application' version '7.1.0-rc01' apply false 9 | id 'com.android.library' version '7.1.0-rc01' apply false 10 | id 'org.jetbrains.kotlin.android' version '1.5.30' apply false 11 | id 'com.diffplug.spotless' version '6.1.0' 12 | } 13 | 14 | task clean(type: Delete) { 15 | delete rootProject.buildDir 16 | } -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app"s APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Kotlin code style for this project: "official" or "obsolete": 19 | kotlin.code.style=official 20 | # Enables namespacing of each library's R class so that its R class includes only the 21 | # resources declared in the library itself and none from the library's dependencies, 22 | # thereby reducing the size of the R class for that library 23 | android.nonTransitiveRClass=true -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 27 13:15:42 KST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | maven { url "https://jitpack.io" } 14 | } 15 | } 16 | rootProject.name = "windowmanager-chat-android" 17 | include ':windowmanager-example' 18 | include ':windowmanager-chat' 19 | include ':windowmanager-chat-compose' 20 | -------------------------------------------------------------------------------- /spotless.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.diffplug.spotless" 2 | 3 | spotless { 4 | kotlin { 5 | target "**/*.kt" 6 | ktlint("0.41.0").userData(['indent_size': '4', 'continuation_indent_size': '4']) 7 | licenseHeaderFile "$rootDir/spotless.license.kt" 8 | trimTrailingWhitespace() 9 | endWithNewline() 10 | } 11 | } -------------------------------------------------------------------------------- /spotless.license.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /windowmanager-chat-compose/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'org.jetbrains.kotlin.android' 4 | id 'kotlin-kapt' 5 | } 6 | 7 | android { 8 | compileSdk 31 9 | defaultConfig { 10 | applicationId "io.getstream.example.windowmanager.chat.compose" 11 | minSdk 21 12 | targetSdk 31 13 | versionCode 1 14 | versionName "1.0" 15 | vectorDrawables { 16 | useSupportLibrary true 17 | } 18 | } 19 | 20 | compileOptions { 21 | sourceCompatibility JavaVersion.VERSION_1_8 22 | targetCompatibility JavaVersion.VERSION_1_8 23 | } 24 | 25 | kotlinOptions { 26 | jvmTarget = '1.8' 27 | } 28 | 29 | buildFeatures { 30 | compose true 31 | } 32 | 33 | composeOptions { 34 | kotlinCompilerExtensionVersion compose_version 35 | } 36 | 37 | packagingOptions { 38 | resources { 39 | excludes += '/META-INF/{AL2.0,LGPL2.1}' 40 | } 41 | } 42 | } 43 | 44 | dependencies { 45 | // Stream SDK 46 | implementation "io.getstream:stream-chat-android-compose:4.26.0-beta" 47 | 48 | // Jetpack Compose 49 | implementation "androidx.compose.ui:ui:$compose_version" 50 | implementation "androidx.compose.runtime:runtime:$compose_version" 51 | implementation "androidx.compose.material:material:$compose_version" 52 | implementation "androidx.compose.ui:ui-tooling-preview:$compose_version" 53 | implementation "androidx.activity:activity-compose:1.4.0" 54 | 55 | implementation "androidx.core:core-ktx:1.7.0" 56 | implementation "androidx.window:window:$window_version" 57 | implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0" 58 | implementation "com.google.android.material:material:1.5.0" 59 | 60 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2" 61 | } 62 | 63 | apply from: "$rootDir/spotless.gradle" -------------------------------------------------------------------------------- /windowmanager-chat-compose/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 15 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/ChatComposeApp.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose 18 | 19 | import android.app.Application 20 | import io.getstream.chat.android.client.ChatClient 21 | import io.getstream.chat.android.client.logger.ChatLogLevel 22 | import io.getstream.chat.android.client.models.User 23 | import io.getstream.chat.android.livedata.ChatDomain 24 | 25 | class ChatComposeApp : Application() { 26 | 27 | override fun onCreate() { 28 | super.onCreate() 29 | setupStreamSdk() 30 | connectUser() 31 | } 32 | 33 | private fun setupStreamSdk() { 34 | val client = ChatClient.Builder("b67pax5b2wdq", applicationContext) 35 | .logLevel(ChatLogLevel.ALL) 36 | .build() 37 | ChatDomain.Builder(client, applicationContext) 38 | .userPresenceEnabled() 39 | .build() 40 | } 41 | 42 | private fun connectUser() { 43 | ChatClient.instance().connectUser( 44 | user = User(id = "tutorial-droid").apply { 45 | name = "Tutorial Droid" 46 | image = "https://bit.ly/2TIt8NR" 47 | }, 48 | token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoidHV0b3JpYWwtZHJvaWQifQ.NhEr0hP9W9nwqV7ZkdShxvi02C5PR7SJE7Cs4y7kyqg" 49 | ).enqueue() 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/ui/main/MainActivity.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose.ui.main 18 | 19 | import android.os.Bundle 20 | import androidx.activity.compose.setContent 21 | import androidx.appcompat.app.AppCompatActivity 22 | import io.getstream.chat.android.compose.ui.theme.ChatTheme 23 | import io.getstream.example.windowmanager.chat.compose.util.rememberWindowSizeClass 24 | 25 | class MainActivity : AppCompatActivity() { 26 | 27 | override fun onCreate(savedInstanceState: Bundle?) { 28 | super.onCreate(savedInstanceState) 29 | 30 | setContent { 31 | ChatTheme { 32 | MessagingScreen( 33 | windowSize = rememberWindowSizeClass(), 34 | onBackPressed = { finish() } 35 | ) 36 | } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/ui/main/MainScreen.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose.ui.main 18 | 19 | import androidx.compose.foundation.layout.Box 20 | import androidx.compose.foundation.layout.Row 21 | import androidx.compose.foundation.layout.Spacer 22 | import androidx.compose.foundation.layout.fillMaxSize 23 | import androidx.compose.foundation.layout.width 24 | import androidx.compose.runtime.Composable 25 | import androidx.compose.runtime.getValue 26 | import androidx.compose.runtime.mutableStateOf 27 | import androidx.compose.runtime.remember 28 | import androidx.compose.runtime.setValue 29 | import androidx.compose.ui.Modifier 30 | import androidx.compose.ui.platform.LocalContext 31 | import androidx.compose.ui.res.stringResource 32 | import androidx.compose.ui.unit.dp 33 | import androidx.core.content.ContextCompat.startActivity 34 | import io.getstream.chat.android.compose.ui.channels.ChannelsScreen 35 | import io.getstream.example.windowmanager.chat.compose.R 36 | import io.getstream.example.windowmanager.chat.compose.ui.message.MessagesActivity 37 | import io.getstream.example.windowmanager.chat.compose.ui.message.MessagesScreen 38 | import io.getstream.example.windowmanager.chat.compose.util.WindowSize 39 | 40 | @Composable 41 | fun MessagingScreen( 42 | windowSize: WindowSize, 43 | onBackPressed: () -> Unit 44 | ) { 45 | when (windowSize) { 46 | is WindowSize.Expanded -> MessagingScreenExpanded( 47 | windowSize = windowSize, 48 | onBackPressed = onBackPressed 49 | ) 50 | else -> MessagingScreenRegular(onBackPressed = onBackPressed) 51 | } 52 | } 53 | 54 | @Composable 55 | private fun MessagingScreenExpanded( 56 | windowSize: WindowSize.Expanded, 57 | onBackPressed: () -> Unit 58 | ) { 59 | val hingeHalfSize = 15.dp 60 | val rowItemWidth = windowSize.size.width / 2 - hingeHalfSize 61 | var selectedChannelId by remember { mutableStateOf(null) } 62 | 63 | Row(Modifier.fillMaxSize()) { 64 | Box(modifier = Modifier.width(rowItemWidth)) { 65 | ChannelsScreen( 66 | title = stringResource(id = R.string.app_name), 67 | onItemClick = { channel -> selectedChannelId = channel.cid }, 68 | onBackPressed = onBackPressed, 69 | ) 70 | } 71 | 72 | Spacer(modifier = Modifier.width(hingeHalfSize * 2)) 73 | 74 | MessagesScreen( 75 | cid = selectedChannelId, 76 | width = rowItemWidth, 77 | onBackPressed = { selectedChannelId = null } 78 | ) 79 | } 80 | } 81 | 82 | @Composable 83 | private fun MessagingScreenRegular( 84 | onBackPressed: () -> Unit 85 | ) { 86 | val context = LocalContext.current 87 | ChannelsScreen( 88 | title = stringResource(id = R.string.app_name), 89 | onItemClick = { channel -> 90 | startActivity(context, MessagesActivity.getIntent(context, channel.cid), null) 91 | }, 92 | onBackPressed = onBackPressed, 93 | ) 94 | } 95 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/ui/message/MessagesActivity.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose.ui.message 18 | 19 | import android.content.Context 20 | import android.content.Intent 21 | import android.os.Bundle 22 | import androidx.activity.compose.setContent 23 | import androidx.appcompat.app.AppCompatActivity 24 | import io.getstream.chat.android.compose.ui.messages.MessagesScreen 25 | import io.getstream.chat.android.compose.ui.theme.ChatTheme 26 | 27 | class MessagesActivity : AppCompatActivity() { 28 | 29 | override fun onCreate(savedInstanceState: Bundle?) { 30 | super.onCreate(savedInstanceState) 31 | 32 | val channelId = intent.getStringExtra(EXTRA_CHANNEL_ID) 33 | if (channelId == null) { 34 | finish() 35 | return 36 | } 37 | 38 | setContent { 39 | ChatTheme { 40 | MessagesScreen( 41 | channelId = channelId, 42 | messageLimit = 30, 43 | onBackPressed = { finish() } 44 | ) 45 | } 46 | } 47 | } 48 | 49 | companion object { 50 | private const val EXTRA_CHANNEL_ID = "channelId" 51 | 52 | fun getIntent(context: Context, channelId: String): Intent { 53 | return Intent(context, MessagesActivity::class.java).apply { 54 | putExtra(EXTRA_CHANNEL_ID, channelId) 55 | } 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/ui/message/MessagesScreen.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose.ui.message 18 | 19 | import androidx.compose.foundation.background 20 | import androidx.compose.foundation.layout.Box 21 | import androidx.compose.foundation.layout.fillMaxSize 22 | import androidx.compose.foundation.layout.fillMaxWidth 23 | import androidx.compose.foundation.layout.height 24 | import androidx.compose.foundation.layout.padding 25 | import androidx.compose.foundation.layout.width 26 | import androidx.compose.foundation.layout.wrapContentHeight 27 | import androidx.compose.material.Scaffold 28 | import androidx.compose.material.Text 29 | import androidx.compose.runtime.Composable 30 | import androidx.compose.runtime.collectAsState 31 | import androidx.compose.runtime.getValue 32 | import androidx.compose.ui.Alignment 33 | import androidx.compose.ui.Modifier 34 | import androidx.compose.ui.platform.LocalContext 35 | import androidx.compose.ui.res.stringResource 36 | import androidx.compose.ui.text.style.TextAlign 37 | import androidx.compose.ui.unit.Dp 38 | import androidx.compose.ui.unit.dp 39 | import io.getstream.chat.android.common.state.MessageMode 40 | import io.getstream.chat.android.common.state.Reply 41 | import io.getstream.chat.android.compose.handlers.SystemBackPressedHandler 42 | import io.getstream.chat.android.compose.state.imagepreview.ImagePreviewResultType 43 | import io.getstream.chat.android.compose.ui.messages.composer.MessageComposer 44 | import io.getstream.chat.android.compose.ui.messages.header.MessageListHeader 45 | import io.getstream.chat.android.compose.ui.messages.list.MessageList 46 | import io.getstream.chat.android.compose.ui.theme.ChatTheme 47 | import io.getstream.chat.android.compose.viewmodel.messages.AttachmentsPickerViewModel 48 | import io.getstream.chat.android.compose.viewmodel.messages.MessageComposerViewModel 49 | import io.getstream.chat.android.compose.viewmodel.messages.MessageListViewModel 50 | import io.getstream.chat.android.compose.viewmodel.messages.MessagesViewModelFactory 51 | import io.getstream.example.windowmanager.chat.compose.R 52 | 53 | @Composable 54 | fun MessagesScreen( 55 | cid: String?, 56 | width: Dp, 57 | onBackPressed: () -> Unit = {}, 58 | ) { 59 | if (cid != null) { 60 | val context = LocalContext.current 61 | val factory = MessagesViewModelFactory( 62 | context = context, 63 | channelId = cid, 64 | enforceUniqueReactions = true, 65 | messageLimit = 30 66 | ) 67 | val listViewModel = factory.create(MessageListViewModel::class.java) 68 | val composerViewModel = factory.create(MessageComposerViewModel::class.java) 69 | val attachmentsPickerViewModel = factory.create(AttachmentsPickerViewModel::class.java) 70 | val messageMode = listViewModel.messageMode 71 | 72 | val connectionState by listViewModel.connectionState.collectAsState() 73 | val user by listViewModel.user.collectAsState() 74 | 75 | val backAction = { 76 | val isInThread = listViewModel.isInThread 77 | val isShowingOverlay = listViewModel.isShowingOverlay 78 | when { 79 | attachmentsPickerViewModel.isShowingAttachments -> attachmentsPickerViewModel.changeAttachmentState( 80 | false 81 | ) 82 | isShowingOverlay -> listViewModel.selectMessage(null) 83 | isInThread -> { 84 | listViewModel.leaveThread() 85 | composerViewModel.leaveThread() 86 | } 87 | else -> onBackPressed() 88 | } 89 | } 90 | 91 | SystemBackPressedHandler(isEnabled = true, onBackPressed = backAction) 92 | 93 | Box(modifier = Modifier.width(width)) { 94 | Scaffold( 95 | modifier = Modifier.fillMaxSize(), 96 | topBar = { 97 | MessageListHeader( 98 | modifier = Modifier.height(56.dp), 99 | channel = listViewModel.channel, 100 | currentUser = user, 101 | typingUsers = listViewModel.typingUsers, 102 | connectionState = connectionState, 103 | messageMode = messageMode, 104 | onBackPressed = backAction, 105 | ) 106 | }, 107 | bottomBar = { 108 | MessageComposer( 109 | modifier = Modifier 110 | .fillMaxWidth() 111 | .wrapContentHeight() 112 | .align(Alignment.Center), 113 | viewModel = composerViewModel, 114 | onAttachmentsClick = { attachmentsPickerViewModel.changeAttachmentState(true) }, 115 | onCommandsClick = { composerViewModel.toggleCommandsVisibility() }, 116 | onCancelAction = { 117 | listViewModel.dismissAllMessageActions() 118 | composerViewModel.dismissMessageActions() 119 | } 120 | ) 121 | } 122 | ) { 123 | MessageList( 124 | modifier = Modifier 125 | .fillMaxSize() 126 | .background(ChatTheme.colors.appBackground) 127 | .padding(it), 128 | viewModel = listViewModel, 129 | onThreadClick = { message -> 130 | composerViewModel.setMessageMode(MessageMode.MessageThread(message)) 131 | listViewModel.openMessageThread(message) 132 | }, 133 | onImagePreviewResult = { result -> 134 | when (result?.resultType) { 135 | ImagePreviewResultType.QUOTE -> { 136 | val message = listViewModel.getMessageWithId(result.messageId) 137 | 138 | if (message != null) { 139 | composerViewModel.performMessageAction(Reply(message)) 140 | } 141 | } 142 | 143 | ImagePreviewResultType.SHOW_IN_CHAT -> { 144 | listViewModel.focusMessage(result.messageId) 145 | } 146 | null -> Unit 147 | } 148 | } 149 | ) 150 | } 151 | } 152 | } else { 153 | EmptyContent() 154 | } 155 | } 156 | 157 | @Composable 158 | private fun EmptyContent() { 159 | Box( 160 | modifier = Modifier 161 | .background(color = ChatTheme.colors.appBackground) 162 | .fillMaxSize(), 163 | ) { 164 | Text( 165 | modifier = Modifier 166 | .align(Alignment.Center), 167 | text = stringResource(id = R.string.search_no_results), 168 | style = ChatTheme.typography.bodyBold, 169 | color = ChatTheme.colors.textHighEmphasis, 170 | textAlign = TextAlign.Center 171 | ) 172 | } 173 | } 174 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/kotlin/io/getstream/example/windowmanager/chat/compose/util/WindowSize.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.compose.util 18 | 19 | import android.app.Activity 20 | import androidx.compose.runtime.Composable 21 | import androidx.compose.runtime.remember 22 | import androidx.compose.ui.geometry.Size 23 | import androidx.compose.ui.graphics.toComposeRect 24 | import androidx.compose.ui.platform.LocalConfiguration 25 | import androidx.compose.ui.platform.LocalDensity 26 | import androidx.compose.ui.unit.DpSize 27 | import androidx.compose.ui.unit.dp 28 | import androidx.window.layout.WindowMetricsCalculator 29 | 30 | /* 31 | * Copyright 2021 The Android Open Source Project 32 | * 33 | * Licensed under the Apache License, Version 2.0 (the "License"); 34 | * you may not use this file except in compliance with the License. 35 | * You may obtain a copy of the License at 36 | * 37 | * https://www.apache.org/licenses/LICENSE-2.0 38 | * 39 | * Unless required by applicable law or agreed to in writing, software 40 | * distributed under the License is distributed on an "AS IS" BASIS, 41 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 42 | * See the License for the specific language governing permissions and 43 | * limitations under the License. 44 | */ 45 | 46 | /** 47 | * Opinionated set of viewport breakpoints 48 | * - Compact: Most phones in portrait mode 49 | * - Medium: Most foldables and tablets in portrait mode 50 | * - Expanded: Most tablets in landscape mode 51 | * 52 | * More info: https://material.io/archive/guidelines/layout/responsive-ui.html 53 | */ 54 | sealed class WindowSize(val size: DpSize) { 55 | class Compact(windowDpSize: DpSize) : WindowSize(windowDpSize) 56 | class Medium(windowDpSize: DpSize) : WindowSize(windowDpSize) 57 | class Expanded(windowDpSize: DpSize) : WindowSize(windowDpSize) 58 | } 59 | 60 | /** 61 | * Remembers the [WindowSize] class for the window corresponding to the current window metrics. 62 | */ 63 | @Composable 64 | fun Activity.rememberWindowSizeClass(): WindowSize { 65 | // Get the size (in pixels) of the window 66 | val windowSize = rememberWindowSize() 67 | 68 | // Convert the window size to [Dp] 69 | val windowDpSize = with(LocalDensity.current) { 70 | windowSize.toDpSize() 71 | } 72 | 73 | // Calculate the window size class 74 | return getWindowSizeClass(windowDpSize) 75 | } 76 | 77 | /** 78 | * Remembers the [Size] in pixels of the window corresponding to the current window metrics. 79 | */ 80 | @Composable 81 | private fun Activity.rememberWindowSize(): Size { 82 | val configuration = LocalConfiguration.current 83 | // WindowMetricsCalculator implicitly depends on the configuration through the activity, 84 | // so re-calculate it upon changes. 85 | val windowMetrics = remember(configuration) { 86 | WindowMetricsCalculator.getOrCreate().computeCurrentWindowMetrics(this) 87 | } 88 | return windowMetrics.bounds.toComposeRect().size 89 | } 90 | 91 | /** 92 | * Partitions a [DpSize] into a enumerated [WindowSize] class. 93 | */ 94 | private fun getWindowSizeClass(windowDpSize: DpSize): WindowSize = when { 95 | windowDpSize.width < 0.dp -> throw IllegalArgumentException("Dp value cannot be negative") 96 | windowDpSize.width < 600.dp -> WindowSize.Compact(windowDpSize) 97 | windowDpSize.width < 840.dp -> WindowSize.Medium(windowDpSize) 98 | else -> WindowSize.Expanded(windowDpSize) 99 | } 100 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat-compose/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WindowManager Chat Compose 3 | No results 4 | -------------------------------------------------------------------------------- /windowmanager-chat-compose/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /windowmanager-chat/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /windowmanager-chat/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'org.jetbrains.kotlin.android' 4 | id 'kotlin-kapt' 5 | } 6 | 7 | android { 8 | compileSdk 31 9 | defaultConfig { 10 | applicationId "io.getstream.example.windowmanager" 11 | minSdk 21 12 | targetSdk 31 13 | versionCode 1 14 | versionName "1.0" 15 | } 16 | 17 | buildFeatures { 18 | dataBinding true 19 | } 20 | 21 | compileOptions { 22 | sourceCompatibility JavaVersion.VERSION_11 23 | targetCompatibility JavaVersion.VERSION_11 24 | } 25 | 26 | kotlinOptions { 27 | jvmTarget = '11' 28 | } 29 | } 30 | 31 | dependencies { 32 | // Stream SDK 33 | implementation "io.getstream:stream-chat-android-ui-components:4.26.0" 34 | 35 | implementation "com.google.android.material:material:1.5.0" 36 | implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0" 37 | implementation "androidx.fragment:fragment-ktx:1.4.1" 38 | 39 | implementation "androidx.window:window:$window_version" 40 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2" 41 | } 42 | 43 | apply from: "$rootDir/spotless.gradle" -------------------------------------------------------------------------------- /windowmanager-chat/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /windowmanager-chat/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/kotlin/io/getstream/example/windowmanager/chat/ChatApp.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat 18 | 19 | import android.app.Application 20 | import io.getstream.chat.android.client.ChatClient 21 | import io.getstream.chat.android.client.logger.ChatLogLevel 22 | import io.getstream.chat.android.client.models.User 23 | import io.getstream.chat.android.livedata.ChatDomain 24 | 25 | class ChatApp : Application() { 26 | 27 | override fun onCreate() { 28 | super.onCreate() 29 | setupStreamSdk() 30 | connectUser() 31 | } 32 | 33 | private fun setupStreamSdk() { 34 | val client = ChatClient.Builder("b67pax5b2wdq", applicationContext) 35 | .logLevel(ChatLogLevel.ALL) 36 | .build() 37 | ChatDomain.Builder(client, applicationContext) 38 | .userPresenceEnabled() 39 | .build() 40 | } 41 | 42 | private fun connectUser() { 43 | ChatClient.instance().connectUser( 44 | user = User(id = "tutorial-droid").apply { 45 | name = "Tutorial Droid" 46 | image = "https://bit.ly/2TIt8NR" 47 | }, 48 | token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoidHV0b3JpYWwtZHJvaWQifQ.NhEr0hP9W9nwqV7ZkdShxvi02C5PR7SJE7Cs4y7kyqg" 49 | ).enqueue() 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/kotlin/io/getstream/example/windowmanager/chat/ui/BindingAdapters.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.ui 18 | 19 | import android.view.View 20 | import androidx.core.view.isVisible 21 | import androidx.core.view.updatePadding 22 | import androidx.databinding.BindingAdapter 23 | 24 | object BindingAdapters { 25 | 26 | @JvmStatic 27 | @BindingAdapter("gone") 28 | fun View.bindGone(isGone: Boolean) { 29 | isVisible = !isGone 30 | } 31 | 32 | @JvmStatic 33 | @BindingAdapter("paddingHorizontal") 34 | fun View.bindPaddingHorizontal(paddings: Int) { 35 | updatePadding(left = paddings, right = paddings) 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/kotlin/io/getstream/example/windowmanager/chat/ui/MainActivity.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.ui 18 | 19 | import android.os.Bundle 20 | import androidx.appcompat.app.AppCompatActivity 21 | import androidx.databinding.DataBindingUtil 22 | import com.getstream.sdk.chat.viewmodel.MessageInputViewModel 23 | import com.getstream.sdk.chat.viewmodel.messages.MessageListViewModel 24 | import io.getstream.chat.android.client.ChatClient 25 | import io.getstream.chat.android.ui.channel.list.viewmodel.ChannelListViewModel 26 | import io.getstream.chat.android.ui.channel.list.viewmodel.bindView 27 | import io.getstream.chat.android.ui.channel.list.viewmodel.factory.ChannelListViewModelFactory 28 | import io.getstream.chat.android.ui.message.MessageListActivity 29 | import io.getstream.chat.android.ui.message.input.viewmodel.bindView 30 | import io.getstream.chat.android.ui.message.list.header.viewmodel.MessageListHeaderViewModel 31 | import io.getstream.chat.android.ui.message.list.header.viewmodel.bindView 32 | import io.getstream.chat.android.ui.message.list.viewmodel.bindView 33 | import io.getstream.chat.android.ui.message.list.viewmodel.factory.MessageListViewModelFactory 34 | import io.getstream.example.windowmanager.chat.R 35 | import io.getstream.example.windowmanager.chat.databinding.ActivityMainBinding 36 | import io.getstream.example.windowmanager.chat.util.WindowSize 37 | import io.getstream.example.windowmanager.chat.util.getWindowSize 38 | 39 | class MainActivity : AppCompatActivity() { 40 | 41 | private lateinit var binding: ActivityMainBinding 42 | 43 | private val factory by lazy { ChannelListViewModelFactory() } 44 | private val channelListViewModel: ChannelListViewModel by lazy { 45 | factory.create(ChannelListViewModel::class.java) 46 | } 47 | 48 | override fun onCreate(savedInstanceState: Bundle?) { 49 | super.onCreate(savedInstanceState) 50 | 51 | // Create a data binding and set content view 52 | binding = DataBindingUtil.setContentView(this, R.layout.activity_main) 53 | 54 | with(binding) { 55 | // Set WindowSize to the data binding 56 | windowSize = this@MainActivity.getWindowSize() 57 | 58 | // Set up channel list header view and list view 59 | ChatClient.instance().getCurrentUser()?.let { channelListHeaderView.setUser(it) } 60 | channelListViewModel.bindView(channelListView, this@MainActivity) 61 | 62 | // Set up on item click listener for channel list view 63 | channelListView.setChannelItemClickListener { channel -> 64 | cid = channel.cid 65 | 66 | // Configure difference layout depending on the WindowSize 67 | if (windowSize is WindowSize.Expanded) { 68 | setupMessageList(channel.cid) 69 | } else { 70 | startMessageListActivity(channel.cid) 71 | } 72 | } 73 | } 74 | } 75 | 76 | private fun setupMessageList(cid: String) { 77 | val factory = MessageListViewModelFactory(cid) 78 | val messageListHeaderViewModel = factory.create(MessageListHeaderViewModel::class.java) 79 | val messageListViewModel = factory.create(MessageListViewModel::class.java) 80 | val messageInputViewModel = factory.create(MessageInputViewModel::class.java) 81 | 82 | messageListHeaderViewModel.bindView(binding.messageListHeaderView, this) 83 | messageListViewModel.bindView(binding.messageListView, this) 84 | messageInputViewModel.bindView(binding.messageInputView, this) 85 | } 86 | 87 | private fun startMessageListActivity(cid: String) { 88 | val intent = MessageListActivity.createIntent(this@MainActivity, cid) 89 | startActivity(intent) 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/kotlin/io/getstream/example/windowmanager/chat/util/SizeUtils.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.util 18 | 19 | import android.content.res.Resources 20 | import android.graphics.Rect 21 | import android.util.Size 22 | import android.util.TypedValue 23 | import kotlin.math.roundToInt 24 | 25 | /** Returns pixel size from the dp size. */ 26 | internal fun Int.dpToPx(): Int { 27 | return TypedValue.applyDimension( 28 | TypedValue.COMPLEX_UNIT_DIP, 29 | this.toFloat(), 30 | Resources.getSystem().displayMetrics 31 | ).roundToInt() 32 | } 33 | 34 | /** Returns [Size] class from a [Rect] class. */ 35 | internal fun Rect.toSize(): Size { 36 | return Size(right - left, bottom - top) 37 | } 38 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/kotlin/io/getstream/example/windowmanager/chat/util/WindowSize.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager.chat.util 18 | 19 | import android.app.Activity 20 | import android.util.Size 21 | import androidx.window.layout.WindowMetricsCalculator 22 | 23 | /** 24 | * Copyright 2022 Google LLC. 25 | * SPDX-License-Identifier: Apache-2.0 26 | * 27 | * Opinionated set of viewport breakpoints 28 | * - Compact: Most phones in portrait mode 29 | * - Medium: Most foldables and tablets in portrait mode 30 | * - Expanded: Most tablets in landscape mode 31 | */ 32 | sealed class WindowSize(val size: Int) { 33 | class Compact(windowPixelSize: Int) : WindowSize(windowPixelSize) 34 | class Medium(windowPixelSize: Int) : WindowSize(windowPixelSize) 35 | class Expanded(windowPixelSize: Int) : WindowSize(windowPixelSize) 36 | } 37 | 38 | /** 39 | * Gets the [WindowSize] by computing window size. 40 | */ 41 | fun Activity.getWindowSize(): WindowSize { 42 | // Get the size (in pixels) of the window 43 | val windowSize = computeWindowSize() 44 | val windowPixelSize = windowSize.width 45 | return getWindowSizeClass(windowPixelSize) 46 | } 47 | 48 | /** 49 | * Computes the size of the Window by using [WindowMetricsCalculator]. 50 | */ 51 | private fun Activity.computeWindowSize(): Size { 52 | val windowMetrics = WindowMetricsCalculator.getOrCreate().computeCurrentWindowMetrics(this) 53 | return windowMetrics.bounds.toSize() 54 | } 55 | 56 | /** 57 | * Partitions a width size into a enumerated [WindowSize] class. 58 | */ 59 | private fun getWindowSizeClass(windowPixelSize: Int): WindowSize = when { 60 | windowPixelSize < 0.dpToPx() -> throw IllegalArgumentException("Dp value cannot be negative") 61 | windowPixelSize < 600.dpToPx() -> WindowSize.Compact(windowPixelSize) 62 | windowPixelSize < 840.dpToPx() -> WindowSize.Medium(windowPixelSize) 63 | else -> WindowSize.Expanded(windowPixelSize) 64 | } 65 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 11 | 12 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 34 | 35 | 49 | 50 | 60 | 61 | 69 | 70 | 86 | 87 | 95 | 96 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-chat/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WindowManager Chat 3 | No results 4 | -------------------------------------------------------------------------------- /windowmanager-chat/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /windowmanager-example/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /windowmanager-example/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'org.jetbrains.kotlin.android' 4 | } 5 | 6 | android { 7 | compileSdk 31 8 | defaultConfig { 9 | applicationId "io.getstream.example.windowmanager" 10 | minSdk 21 11 | targetSdk 31 12 | versionCode 1 13 | versionName "1.0" 14 | } 15 | 16 | buildFeatures { 17 | viewBinding true 18 | } 19 | 20 | compileOptions { 21 | sourceCompatibility JavaVersion.VERSION_11 22 | targetCompatibility JavaVersion.VERSION_11 23 | } 24 | 25 | kotlinOptions { 26 | jvmTarget = '11' 27 | } 28 | } 29 | 30 | dependencies { 31 | implementation "com.google.android.material:material:1.5.0" 32 | implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0" 33 | implementation "androidx.fragment:fragment-ktx:1.4.1" 34 | 35 | implementation "androidx.window:window:$window_version" 36 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2" 37 | } 38 | 39 | apply from: "$rootDir/spotless.gradle" -------------------------------------------------------------------------------- /windowmanager-example/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /windowmanager-example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/kotlin/io/getstream/example/windowmanager/FoldingFeatureExtensions.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager 18 | 19 | import androidx.window.layout.FoldingFeature 20 | 21 | /** Check is the [FoldingFeature] is the table-top mode. */ 22 | fun FoldingFeature.isTableTopPosture(): Boolean { 23 | return state == FoldingFeature.State.HALF_OPENED && 24 | orientation == FoldingFeature.Orientation.HORIZONTAL 25 | } 26 | 27 | /** Check is the [FoldingFeature] is the book mode. */ 28 | fun FoldingFeature.isBookPosture(): Boolean { 29 | return state == FoldingFeature.State.HALF_OPENED && 30 | orientation == FoldingFeature.Orientation.VERTICAL 31 | } 32 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/kotlin/io/getstream/example/windowmanager/MainActivity.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2022 Stream.IO, Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package io.getstream.example.windowmanager 18 | 19 | import android.os.Bundle 20 | import android.util.Log 21 | import androidx.appcompat.app.AppCompatActivity 22 | import androidx.lifecycle.Lifecycle 23 | import androidx.lifecycle.lifecycleScope 24 | import androidx.lifecycle.repeatOnLifecycle 25 | import androidx.window.layout.FoldingFeature 26 | import androidx.window.layout.WindowInfoTracker 27 | import androidx.window.layout.WindowMetricsCalculator 28 | import io.getstream.example.windowmanager.databinding.ActivityMainBinding 29 | import kotlinx.coroutines.Dispatchers 30 | import kotlinx.coroutines.flow.collect 31 | import kotlinx.coroutines.launch 32 | 33 | class MainActivity : AppCompatActivity() { 34 | 35 | override fun onCreate(savedInstanceState: Bundle?) { 36 | super.onCreate(savedInstanceState) 37 | 38 | val binding = ActivityMainBinding.inflate(layoutInflater) 39 | setContentView(binding.root) 40 | 41 | // Computes current WindowMetrics 42 | val wmc = WindowMetricsCalculator.getOrCreate() 43 | val currentWM = wmc.computeCurrentWindowMetrics(this).bounds.flattenToString() 44 | val maximumWM = wmc.computeMaximumWindowMetrics(this).bounds.flattenToString() 45 | binding.metrics.text = "${currentWM}\n$maximumWM" 46 | 47 | // Create a new coroutine since repeatOnLifecycle is a suspend function. 48 | lifecycleScope.launch(Dispatchers.Main) { 49 | // The block passed to repeatOnLifecycle is executed when the lifecycle 50 | // is at least STARTED and is cancelled when the lifecycle is STOPPED. 51 | // It automatically restarts the block when the lifecycle is STARTED again. 52 | lifecycle.repeatOnLifecycle(Lifecycle.State.STARTED) { 53 | // Safely collect from WindowInfoTracker when the lifecycle is STARTED 54 | // and stops collection when the lifecycle is STOPPED 55 | WindowInfoTracker.getOrCreate(this@MainActivity) 56 | .windowLayoutInfo(this@MainActivity) 57 | .collect { layoutInfo -> 58 | // Updates display features 59 | if (layoutInfo.displayFeatures.isNotEmpty()) { 60 | binding.layoutChanges.text = "Spanned across displays" 61 | } else { 62 | binding.layoutChanges.text = "One logic/physical display - unspanned" 63 | } 64 | 65 | Log.e("Test", "layoutInfo.displayFeatures: ${layoutInfo.displayFeatures}") 66 | 67 | // Updates folding features 68 | val foldingFeature = 69 | layoutInfo.displayFeatures.filterIsInstance() 70 | .firstOrNull() 71 | 72 | Log.e("Test", "foldingfeature: $foldingFeature") 73 | 74 | foldingFeature ?: return@collect 75 | 76 | when { 77 | foldingFeature.isTableTopPosture() -> 78 | binding.posture.text = "TableTop Posture" 79 | foldingFeature.isBookPosture() -> 80 | binding.posture.text = "Book Posture" 81 | else -> binding.posture.text = "Normal Posture" 82 | } 83 | } 84 | } 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 21 | 22 | 33 | 34 | 45 | 46 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/foldable-chat-android/848f4f3fb3b9e0fa08c297be334856b39726e57a/windowmanager-example/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | windowmanager-chat-android 3 | -------------------------------------------------------------------------------- /windowmanager-example/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | --------------------------------------------------------------------------------