├── .gitignore ├── AndroidStub ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── android │ │ └── app │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── android │ │ └── app │ │ └── ActivityThread.java │ └── test │ └── java │ └── android │ └── app │ └── ExampleUnitTest.java ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.gradle ├── demo ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── dhh │ │ └── demo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── dhh │ │ │ └── demo │ │ │ ├── mvp │ │ │ ├── BaseActivity.kt │ │ │ ├── BaseFragment.kt │ │ │ └── Contract.kt │ │ │ ├── rxlife1 │ │ │ ├── RxLife1Activity.kt │ │ │ ├── RxLife1Contract.kt │ │ │ └── RxLife1PresenterImpl.kt │ │ │ └── rxlife2 │ │ │ ├── BaseViewModel.kt │ │ │ ├── CustomDisposeScope.kt │ │ │ ├── RxLife2Activity.kt │ │ │ └── ViewModelTest.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_rx_life1.xml │ │ └── activity_rxlife2.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── dhh │ └── demo │ ├── ExampleUnitTest.kt │ └── dsfsd.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── rxLife1 ├── .gitignore ├── bintray.gradle ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── dhh │ │ └── rxlife1 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── dhh │ │ └── rxlife1 │ │ ├── LifecycleBridge.kt │ │ ├── LifecycleOwnerScope.kt │ │ ├── LifecycleProvider.kt │ │ ├── LifecycleTransformer.kt │ │ ├── RxLife.kt │ │ ├── SubscriptionScope.kt │ │ └── internal │ │ ├── OperatorTakeUntil.kt │ │ └── RxLifeActivityLifecycleCallbacks.kt │ └── test │ └── java │ └── com │ └── dhh │ └── rxlife1 │ └── ExampleUnitTest.java ├── rxLife2 ├── .gitignore ├── bintray.gradle ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── dhh │ │ └── rxlife2 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── dhh │ │ └── rxlife2 │ │ ├── DisposeScope.kt │ │ ├── LifecycleBridge.kt │ │ ├── LifecycleOwnerScope.kt │ │ ├── LifecycleProvider.kt │ │ ├── LifecycleTransformer.kt │ │ ├── RxLife.kt │ │ └── internal │ │ ├── ObservableTakeUntil.kt │ │ └── RxLifeActivityLifecycleCallbacks.kt │ └── test │ └── java │ └── com │ └── dhh │ └── rxlife2 │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/ 5 | .DS_Store 6 | /build 7 | /captures 8 | .externalNativeBuild 9 | -------------------------------------------------------------------------------- /AndroidStub/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidStub/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply plugin: 'kotlin-android' 3 | 4 | android { 5 | compileSdkVersion AndroidSdkVersion 6 | 7 | 8 | 9 | defaultConfig { 10 | minSdkVersion 14 11 | targetSdkVersion AndroidSdkVersion 12 | versionCode 1 13 | versionName "1.0" 14 | 15 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 16 | 17 | } 18 | 19 | buildTypes { 20 | release { 21 | minifyEnabled false 22 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 23 | } 24 | } 25 | 26 | } 27 | 28 | dependencies { 29 | implementation fileTree(dir: 'libs', include: ['*.jar']) 30 | 31 | compileOnly 'com.android.support:appcompat-v7:28.0.0' 32 | testImplementation 'junit:junit:4.12' 33 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 34 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 35 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 36 | } 37 | repositories { 38 | mavenCentral() 39 | } 40 | -------------------------------------------------------------------------------- /AndroidStub/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 22 | -------------------------------------------------------------------------------- /AndroidStub/src/androidTest/java/android/app/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package android.app; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("android.app.test", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /AndroidStub/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /AndroidStub/src/main/java/android/app/ActivityThread.java: -------------------------------------------------------------------------------- 1 | package android.app; 2 | 3 | /** 4 | * Created by dhh on 2018/11/22. 5 | * 6 | * @author dhh 7 | */ 8 | public final class ActivityThread { 9 | public static Application currentApplication() { 10 | throw new RuntimeException("Stub!"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /AndroidStub/src/test/java/android/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package android.app; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## Version 1.1.3 *(2019-05-06)* 4 | * fix #3,修复初始化问题 5 | 6 | ## Version 1.1.1 *(2019-02-18)* 7 | * fix #2,移除 rxLife_base 模块 8 | 9 | ## Version 1.1.0 *(2019-01-29)* 10 | * 重构项目内部逻辑,将RxLife责任划分更加清晰,对外暴露的API没有变更 11 | ## Version 1.0.1 *(2019-01-28)* 12 | * 优化初始化逻辑 13 | * 更改 Kotlin 的扩展方法 bindonDestroy 为 bindOnDestroy 14 | * 增加CHANGELOG.md 15 | ## Version 1.0.0 *(2018-11-24)* 16 | * 正式开源次项目 17 | -------------------------------------------------------------------------------- /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 | # RxLife 2 | [![](https://img.shields.io/badge/platform-android-brightgreen.svg)](https://developer.android.com/index.html) 3 | [ ![API](https://img.shields.io/badge/API-14%2B-blue.svg?style=flat-square) ](https://developer.android.com/about/versions/android-4.0.html) 4 | [ ![License](http://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square) ](http://www.apache.org/licenses/LICENSE-2.0) 5 | ## 利用 Jetpack 下的 Lifecycle 获取 Activity/Fragment 的生命周期变化,通过 BehaviorSubject 转化成 Observable,从而通过 Observable.takeUnit(otherObserable) 方法自动完成 Observable 与界面命周期绑定,在日常开发过程中,在该库的管控下,RxJava 相关导致的内存泄漏率为 0%(LeakCanary 检测),强烈推荐使用。 6 | 7 | ### 为什么重复造轮子? 8 | ### 使用 RxJava 的开发者,一定知道 [trello/RxLifecycle](https://github.com/trello/RxLifecycle) 项目,本项目 LifecycleTransformer 也是参考了 trello/RxLifecycle,但是个人认为 trello/RxLifecycle 不够简洁,需要继承等等,所以在去年本人就开发了 [dhhAndroid/RxLifecycle](https://github.com/dhhAndroid/RxLifecycle),更加简洁地管理 RxJava 的生命周期;随着 Google 推出 Jetpack,我发现在 dhhAndroid/RxLifecycle 库中获取界面生命周期的方式 (通过在界面中注入空 Fragment),在 JetPack 中的 Lifecycle 模块中已经实现,所以使用 Kotlin 结合 Jetpack 开发出了本项目。 9 | 10 | # 安装 # 11 | ### 由于本库依赖于 Jetpack,所以 android.support 库要在 v7:26.1.x 以上,例如:com.android.support:appcompat-v7:28.0.0 ### 12 | ### RxLife1 对应 RxJava1 版本,RxLife2 对应 RxJava2 版本 ### 13 | #### version:RxLife1:[ ![Download](https://api.bintray.com/packages/dhhandroid/maven/RxLife1/images/download.svg) ](https://bintray.com/dhhandroid/maven/RxLife1/_latestVersion) 14 | ```groovy 15 | 16 | //support 17 | implementation 'com.android.support:appcompat-v7:28.0.0' //27.0.0 等 18 | //RxJava1 19 | implementation 'io.reactivex:rxjava:1.3.8' 20 | //Rxlife1 21 | implementation 'com.dhh:rxLife1:version' 22 | 23 | ``` 24 | #### version:RxLife2:[ ![Download](https://api.bintray.com/packages/dhhandroid/maven/RxLife2/images/download.svg) ](https://bintray.com/dhhandroid/maven/RxLife2/_latestVersion) 25 | ```groovy 26 | 27 | //support 28 | implementation 'com.android.support:appcompat-v7:28.0.0' //27.0.0 等 29 | //RxJava2 30 | implementation 'io.reactivex.rxjava2:rxjava:2.2.3' 31 | //Rxlife2 32 | implementation 'com.dhh:rxLife2:version' 33 | 34 | ``` 35 | ## 使用([查看 demo](https://github.com/dhhAndroid/RxLife/tree/master/demo)) 36 | ### 前置条件:因 support 包中的 AppCompatActivity 和 android.support.v4.app.Fragment 均已实现 LifecycleOwner,所以确保你的项目 BaseActivity 继承于 AppCompatActivity,BaseFragment 继承于 android.support.v4.app.Fragment。 ### 37 | ### RxLife1 与 RxLife2 使用方式完全一样,以 RxJava2 版本为例: 38 | ### 标准用法(Java 或 Kotlin 项目),使用 RxLife.with(lifecycleOwner), 以下 compose 在一个 Observable 事件流上使用一种即可: ### 39 | ```kotlin 40 | 41 | Observable.timer(10, TimeUnit.SECONDS) 42 | // 标准使用模式 , 自动在 [Lifecycle.Event.ON_DESTROY] 注销 43 | .compose(RxLife.with(lifecycleOwner).bindToLifecycle()) 44 | // 指定在 [Lifecycle.Event.ON_DESTROY] 注销 45 | .compose(RxLife.with(lifecycleOwner).bindOnDestroy()) 46 | // 指定在某一生命周期注销,不常用 47 | .compose(RxLife.with(lifecycleOwner).bindUntilEvent(Lifecycle.Event.ON_DESTROY)) 48 | .subscribe { Log.d("RxLife2-onCreate", it.toString()) } 49 | ``` 50 | 51 | # 高级使用:Kotlin 项目使用姿势 52 | ### 项目中提供了两个注销作用域接口 [LifecycleOwnerScope](https://github.com/dhhAndroid/RxLife/blob/master/rxLife2/src/main/java/com/dhh/rxlife2/LifecycleOwnerScope.kt)、[DisposeScope](https://github.com/dhhAndroid/RxLife/blob/master/rxLife2/src/main/java/com/dhh/rxlife2/https://github.com/dhhAndroid/RxLife/blob/master/rxLife2/src/main/java/com/dhh/rxlife2/DisposeScope.kt),其中 LifecycleOwnerScope 的用法是在任意类中比如 Activity、Fragment中如果能获取到 LifecycleOwner 就可以直接让类实现这个接口即可,即可使使用Kotlin的扩展方法进行绑定,用例如下: 53 | ```kotlin 54 | 55 | class RxLife2Activity : AppCompatActivity(), LifecycleOwnerScope { 56 | 57 | override fun getLifecycleOwner(): LifecycleOwner { 58 | if (this is LifecycleOwner) return this 59 | return super.getLifecycleOwner() 60 | } 61 | 62 | override fun onCreate(savedInstanceState: Bundle?) { 63 | super.onCreate(savedInstanceState) 64 | setContentView(R.layout.activity_rxlife2) 65 | Observable.timer(1, TimeUnit.SECONDS) 66 | //直接绑定到 Activity 的 onDestroy 67 | .bindOnDestroy() 68 | .subscribe { 69 | 70 | } 71 | 72 | } 73 | } 74 | ``` 75 | ### 其中 getLifecycleOwner 方法需要返回 LifecycleOwner,做了一些默认类型的实现,如果需要,可以重写实现。 76 | ### DisposeScope(这是RxJava2,RxJava1对应的是 SubscriptionScope)的使用更加广泛,它不依托 LifecycleOwner,对support包版本无要求,只需要在需要使用的类实现此接口,然后在类销毁的时候,调用一下 dispose() 方法即可: 77 | ```kotlin 78 | 79 | class ViewModelTest : ViewModel(), DisposeScope { 80 | val userName = MutableLiveData() 81 | 82 | init { 83 | loadData() 84 | } 85 | 86 | fun loadData() { 87 | Observable.timer(5, TimeUnit.SECONDS) 88 | .map { "dhh" } 89 | .doOnSubscribe { Log.d("VVV", "doOnSubscribe") } 90 | .doOnDispose { Log.d("VVV", "doOnDispose") } 91 | .bindOnDestroy() 92 | .subscribe { userName.value = it } 93 | } 94 | 95 | override fun onCleared() { 96 | super.onCleared() 97 | dispose() 98 | } 99 | } 100 | ``` 101 | ### 如上的例子,在 ViewModel 中在 onCleared()中调用 dispose() 即可在loadData()中的 bindOnDestroy() 生效。 102 | ### 此外,你还可以基于 LifecycleOwnerScope、DisposeScope 与项目结合进行扩展,以自定义 DisposeScope 为例如下: 103 | ```kotlin 104 | 105 | interface CustomDisposeScope : DisposeScope { 106 | // add custom extension methods 107 | fun Observable.commit(onNext: (T) -> Unit): Disposable { 108 | return bindOnDestroy().observeOn(AndroidSchedulers.mainThread()).subscribe(onNext, {}) 109 | } 110 | } 111 | 112 | open class BaseViewModel : ViewModel(), CustomDisposeScope { 113 | override fun onCleared() { 114 | dispose() 115 | } 116 | } 117 | 118 | class ViewModelTest : BaseViewModel() { 119 | val userName = MutableLiveData() 120 | 121 | init { 122 | loadData() 123 | } 124 | 125 | fun loadData() { 126 | Observable.timer(5, TimeUnit.SECONDS) 127 | .map { "dhh" } 128 | .doOnSubscribe { Log.d("VVV", "doOnSubscribe") } 129 | .doOnDispose { Log.d("VVV", "doOnDispose") } 130 | .commit { userName.value = it } 131 | } 132 | 133 | } 134 | ``` 135 | ### 在 CustomDisposeScope 中增加 commit 方法,直接绑定并订阅,从而简化代码。 136 | # 详细使用方法请查看demo!请查看demo!请查看demo! 137 | ## 在 MVP 中使用,其实就是在使用的地方,能提供获取 lifecycleOwner 的方法即可,demo 中有一个简易的 MVP demo,详情查看 demo。 ## 138 | 139 | ## License 140 | ``` 141 | Copyright 2019 dhhAndroid 142 | 143 | Licensed under the Apache License, Version 2.0 (the "License"); 144 | you may not use this file except in compliance with the License. 145 | You may obtain a copy of the License at 146 | 147 | http://www.apache.org/licenses/LICENSE-2.0 148 | 149 | Unless required by applicable law or agreed to in writing, software 150 | distributed under the License is distributed on an "AS IS" BASIS, 151 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 152 | See the License for the specific language governing permissions and 153 | limitations under the License. 154 | ``` 155 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | ext { 3 | AndroidSdkVersion = 28 4 | AndroidSupportAppcompat = "com.android.support:appcompat-v7:28.0.0" 5 | RxJava1 = "io.reactivex:rxjava:1.3.8" 6 | RxAndroid1 = 'io.reactivex:rxandroid:1.2.1' 7 | RxKotlin1 = 'io.reactivex:rxkotlin:2.0.0-RC1' 8 | 9 | RxJava2 = "io.reactivex.rxjava2:rxjava:2.2.3" 10 | RxAndroid2 = "io.reactivex.rxjava2:rxandroid:2.1.0" 11 | RxKotlin2 = "io.reactivex.rxjava2:rxkotlin:2.3.0" 12 | 13 | RxLife1Version = "1.2.0" 14 | RxLife2Version = "1.2.0" 15 | 16 | } 17 | buildscript { 18 | ext.kotlin_version = '1.2.71' 19 | repositories { 20 | google() 21 | jcenter() 22 | } 23 | dependencies { 24 | classpath 'com.android.tools.build:gradle:3.2.1' 25 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 26 | 27 | // NOTE: Do not place your application dependencies here; they belong 28 | // in the individual module build.gradle files 29 | classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0' 30 | classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0' 31 | } 32 | } 33 | 34 | allprojects { 35 | repositories { 36 | google() 37 | jcenter() 38 | } 39 | } 40 | 41 | task clean(type: Delete) { 42 | delete rootProject.buildDir 43 | } 44 | -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /demo/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | apply plugin: 'kotlin-android' 4 | 5 | apply plugin: 'kotlin-android-extensions' 6 | 7 | android { 8 | compileSdkVersion AndroidSdkVersion 9 | defaultConfig { 10 | applicationId "com.dhh.rxlife" 11 | minSdkVersion 14 12 | targetSdkVersion AndroidSdkVersion 13 | versionCode 1 14 | versionName "1.0" 15 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 16 | } 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 21 | } 22 | } 23 | } 24 | 25 | dependencies { 26 | implementation fileTree(dir: 'libs', include: ['*.jar']) 27 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 28 | implementation AndroidSupportAppcompat 29 | implementation 'com.android.support.constraint:constraint-layout:1.1.3' 30 | testImplementation 'junit:junit:4.12' 31 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 32 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 33 | 34 | implementation project(path: ':rxLife1') 35 | implementation RxJava1 36 | implementation RxAndroid1 37 | 38 | implementation project(path: ':rxLife2') 39 | implementation RxJava2 40 | implementation RxAndroid2 41 | implementation "android.arch.lifecycle:extensions:1.1.1" 42 | } 43 | -------------------------------------------------------------------------------- /demo/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 22 | -------------------------------------------------------------------------------- /demo/src/androidTest/java/com/dhh/demo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo 2 | 3 | import android.support.test.InstrumentationRegistry 4 | import android.support.test.runner.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getTargetContext() 22 | assertEquals("com.dhh.rxlife", appContext.packageName) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /demo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/mvp/BaseActivity.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.mvp 2 | 3 | import android.os.Bundle 4 | import android.support.annotation.CallSuper 5 | import android.support.annotation.LayoutRes 6 | import android.support.v7.app.AppCompatActivity 7 | import java.lang.reflect.ParameterizedType 8 | 9 | /** 10 | * Created by dhh on 2018/11/26. 11 | * 12 | * @author dhh 13 | */ 14 | @Suppress("UNCHECKED_CAST") 15 | abstract class BaseActivity

: AppCompatActivity(), BaseView { 16 | 17 | protected val TAG = javaClass.simpleName 18 | protected val presenter: P by lazy { initPresenter() } 19 | /** 20 | * 界面id 21 | */ 22 | @get:LayoutRes 23 | protected abstract val layoutID: Int 24 | 25 | private fun initPresenter(): P { 26 | val clazz = (javaClass.genericSuperclass as ParameterizedType).actualTypeArguments[0] as Class

27 | return clazz.newInstance() 28 | } 29 | 30 | @CallSuper 31 | override fun onCreate(savedInstanceState: Bundle?) { 32 | super.onCreate(savedInstanceState) 33 | setContentView(layoutID) 34 | (presenter as ContractPresenter).attachView(this, this, this) 35 | initView() 36 | } 37 | 38 | /** 39 | * 设置UI,在[onCreate]中调用 40 | */ 41 | abstract fun initView() 42 | } -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/mvp/BaseFragment.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.mvp 2 | 3 | import android.os.Bundle 4 | import android.support.annotation.CallSuper 5 | import android.support.annotation.LayoutRes 6 | import android.support.v4.app.Fragment 7 | import android.view.LayoutInflater 8 | import android.view.View 9 | import android.view.ViewGroup 10 | import java.lang.reflect.ParameterizedType 11 | 12 | /** 13 | * Created by dhh on 2018/11/26. 14 | * 15 | * @author dhh 16 | */ 17 | @Suppress("UNCHECKED_CAST") 18 | abstract class BaseFragment

: Fragment(), BaseView { 19 | 20 | protected val TAG = javaClass.simpleName 21 | protected val presenter: P by lazy { initPresenter() } 22 | /** 23 | * 界面id 24 | */ 25 | @get:LayoutRes 26 | protected abstract val layoutID: Int 27 | 28 | private fun initPresenter(): P { 29 | val clazz = (javaClass.genericSuperclass as ParameterizedType).actualTypeArguments[0] as Class

30 | return clazz.newInstance() 31 | } 32 | 33 | @CallSuper 34 | override fun onCreate(savedInstanceState: Bundle?) { 35 | super.onCreate(savedInstanceState) 36 | (presenter as ContractPresenter).attachView(this, context!!, this) 37 | } 38 | 39 | override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { 40 | val view = inflater.inflate(layoutID, container, false) 41 | return view 42 | } 43 | 44 | @CallSuper 45 | override fun onViewCreated(view: View, savedInstanceState: Bundle?) { 46 | initView() 47 | } 48 | 49 | abstract fun initView() 50 | } -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/mvp/Contract.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.mvp 2 | 3 | import android.arch.lifecycle.LifecycleOwner 4 | import android.content.Context 5 | 6 | /** 7 | * Created by dhh on 2018/11/26. 8 | * 9 | * 本文件主要展示RxLife在MVP中怎么使用,其实就是在P层中提供获取[LifecycleOwner]的方法即可 10 | * 11 | * @author dhh 12 | */ 13 | interface Contract 14 | 15 | interface BaseView 16 | 17 | interface BasePresenter { 18 | /** 19 | * P层开始工作 20 | */ 21 | fun start() 22 | } 23 | 24 | /** 25 | * V-P层关系桥梁,不对外暴露 26 | */ 27 | internal interface ContractPresenter : BasePresenter { 28 | /** 29 | * 绑定[view]层 30 | * @param view V 31 | * @param context Context 32 | * @param owner LifecycleOwner 33 | */ 34 | fun attachView(view: V, context: Context, owner: LifecycleOwner) 35 | 36 | } 37 | 38 | /** 39 | * 一个代理实现,业务P层需要继承[PresenterDelegate] 40 | * @param V : BaseView 41 | * @property view V 42 | * @property context Context 43 | * @property owner LifecycleOwner 44 | */ 45 | abstract class PresenterDelegate : ContractPresenter { 46 | protected lateinit var view: V 47 | protected lateinit var context: Context 48 | protected lateinit var owner: LifecycleOwner 49 | 50 | override fun attachView(view: V, context: Context, owner: LifecycleOwner) { 51 | this.view = view 52 | this.context = context 53 | this.owner = owner 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife1/RxLife1Activity.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife1 2 | 3 | import android.arch.lifecycle.Lifecycle 4 | import android.util.Log 5 | import android.view.View 6 | import com.dhh.demo.R 7 | import com.dhh.demo.mvp.BaseActivity 8 | import com.dhh.rxlife1.LifecycleOwnerScope 9 | import com.dhh.rxlife1.RxLife 10 | import kotlinx.android.synthetic.main.activity_rx_life1.* 11 | import rx.Observable 12 | import rx.android.MainThreadSubscription 13 | import rx.android.schedulers.AndroidSchedulers 14 | import java.util.concurrent.TimeUnit 15 | 16 | 17 | class RxLife1Activity : BaseActivity(), RxLife1Contract.View,LifecycleOwnerScope { 18 | override val layoutID: Int 19 | get() = R.layout.activity_rx_life1 20 | 21 | override fun initView() { 22 | //监听界面生命周期变化 23 | RxLife.with(this) 24 | .getLifecycle() 25 | .subscribe { Log.d("RxLife1", it.name) } 26 | Observable.timer(10, TimeUnit.SECONDS) 27 | .doOnSubscribe { Log.d("RxLife1-onCreate", "doOnSubscribe") } 28 | //标准使用模式,自动在[Lifecycle.Event.ON_DESTROY]注销 29 | .compose(RxLife.with(this).bindToLifecycle()) 30 | //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_DESTROY]注销 31 | .bindToLifecycle() 32 | .doOnCompleted { Log.d("RxLife1-onCreate", "doOnCompleted") } 33 | .doOnUnsubscribe { Log.d("RxLife1-onCreate", "doOnUnsubscribe") } 34 | .subscribe { Log.d("RxLife1-onCreate", it.toString()) } 35 | 36 | 37 | 38 | Observable.timer(20, TimeUnit.SECONDS) 39 | .doOnSubscribe { Log.d("RxLife1-onCreate", "doOnSubscribe2") } 40 | //标准使用模式,自动在[Lifecycle.Event.ON_STOP]注销 41 | .compose(RxLife.with(this).bindUntilEvent(Lifecycle.Event.ON_STOP)) 42 | //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_STOP]注销 43 | .bindUntilEvent( Lifecycle.Event.ON_STOP) 44 | .doOnCompleted { Log.d("RxLife1-onCreate", "doOnCompleted2") } 45 | .doOnUnsubscribe { Log.d("RxLife1-onCreate", "doOnUnsubscribe2") } 46 | .subscribe { Log.d("RxLife1-onCreate", it.toString()) } 47 | 48 | 49 | 50 | btn_msg.rxClick().switchMap { Observable.interval(0, 1, TimeUnit.SECONDS, AndroidSchedulers.mainThread()) } 51 | .map { 10 - it } 52 | .doOnNext { 53 | btn_msg.text = "${it}s后开始网络请求" 54 | } 55 | .first { it == 0L } 56 | .repeat() 57 | .bindToLifecycle() 58 | .subscribe { presenter.requestdata() } 59 | presenter.start() 60 | 61 | } 62 | 63 | override fun onResume() { 64 | super.onResume() 65 | Observable.timer(10, TimeUnit.SECONDS) 66 | .doOnSubscribe { Log.d("RxLife1-onResume", "doOnSubscribe") } 67 | //标准使用模式,自动在[Lifecycle.Event.ON_PAUSE]注销 68 | .compose(RxLife.with(this).bindToLifecycle()) 69 | //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_PAUSE]注销 70 | .bindToLifecycle() 71 | .doOnCompleted { Log.d("RxLife1-onResume", "doOnCompleted") } 72 | .doOnUnsubscribe { Log.d("RxLife1-onResume", "doOnUnsubscribe") } 73 | .subscribe { Log.d("RxLife1-onResume", it.toString()) } 74 | 75 | Observable.timer(10, TimeUnit.SECONDS) 76 | .doOnSubscribe { Log.d("RxLife1-onResume", "doOnSubscribe2") } 77 | //标准使用模式,自动在[Lifecycle.Event.ON_DESTROY]注销 78 | .compose(RxLife.with(this).bindOnDestroy()) 79 | //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_DESTROY]注销 80 | .bindOnDestroy() 81 | .doOnCompleted { Log.d("RxLife1-onResume", "doOnCompleted2") } 82 | .doOnUnsubscribe { Log.d("RxLife1-onResume", "doOnUnsubscribe2") } 83 | .subscribe { Log.d("RxLife1-onResume", it.toString()) } 84 | } 85 | 86 | override fun onSuccess(msg: String) { 87 | btn_msg.text = msg 88 | } 89 | } 90 | 91 | @Suppress("UNCHECKED_CAST") 92 | fun V.rxClick(): Observable { 93 | return Observable.unsafeCreate { subscriber -> 94 | setOnClickListener { 95 | if (!subscriber.isUnsubscribed) subscriber.onNext(it as V) 96 | } 97 | subscriber.add(object : MainThreadSubscription() { 98 | override fun onUnsubscribe() { 99 | setOnClickListener(null) 100 | } 101 | }) 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife1/RxLife1Contract.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife1 2 | 3 | import com.dhh.demo.mvp.BasePresenter 4 | import com.dhh.demo.mvp.BaseView 5 | import com.dhh.rxlife1.LifecycleOwnerScope 6 | 7 | /** 8 | * Created by dhh on 2018/11/26. 9 | * 10 | * @author dhh 11 | */ 12 | interface RxLife1Contract { 13 | interface View : BaseView { 14 | fun onSuccess(msg: String) 15 | } 16 | 17 | interface Presenter : BasePresenter ,LifecycleOwnerScope{ 18 | fun requestdata() 19 | 20 | } 21 | 22 | } -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife1/RxLife1PresenterImpl.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife1 2 | 3 | import android.arch.lifecycle.LifecycleOwner 4 | import android.util.Log 5 | import com.dhh.demo.mvp.PresenterDelegate 6 | import rx.Observable 7 | import rx.android.schedulers.AndroidSchedulers 8 | import java.util.* 9 | import java.util.concurrent.TimeUnit 10 | 11 | /** 12 | * Created by dhh on 2018/11/26. 13 | * 14 | * @author dhh 15 | */ 16 | class RxLife1PresenterImpl : PresenterDelegate(), RxLife1Contract.Presenter { 17 | override fun start() { 18 | requestdata() 19 | } 20 | 21 | override fun getLifecycleOwner(): LifecycleOwner { 22 | return owner 23 | } 24 | 25 | override fun requestdata() { 26 | Observable.just("我是模拟网络请求的数据" + Random().nextInt(100)) 27 | .delay(5, TimeUnit.SECONDS, AndroidSchedulers.mainThread()) 28 | 29 | .doOnSubscribe { Log.d("RxLife1PresenterImpl", "doOnSubscribe") } 30 | .doOnCompleted { Log.d("RxLife1PresenterImpl", "doOnCompleted") } 31 | .doOnUnsubscribe { Log.d("RxLife1PresenterImpl", "doOnUnsubscribe") } 32 | //P层使用用例 33 | .bindOnDestroy() 34 | .subscribe { view.onSuccess(it) } 35 | } 36 | } -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife2/BaseViewModel.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife2 2 | 3 | import android.arch.lifecycle.ViewModel 4 | 5 | /** 6 | * Created by dhh on 2019/12/16. 7 | * 8 | * @author dhh 9 | */ 10 | open class BaseViewModel : ViewModel(), CustomDisposeScope { 11 | override fun onCleared() { 12 | dispose() 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife2/CustomDisposeScope.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife2 2 | 3 | import com.dhh.rxlife2.DisposeScope 4 | import io.reactivex.Observable 5 | import io.reactivex.android.schedulers.AndroidSchedulers 6 | import io.reactivex.disposables.Disposable 7 | 8 | /** 9 | * Created by dhh on 2019/12/21. 10 | * 11 | * @author dhh 12 | */ 13 | interface CustomDisposeScope : DisposeScope { 14 | // add custom extension methods 15 | fun Observable.commit(onNext: (T) -> Unit): Disposable { 16 | return bindOnDestroy().observeOn(AndroidSchedulers.mainThread()).subscribe(onNext, {}) 17 | } 18 | } -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife2/RxLife2Activity.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife2 2 | 3 | import android.arch.lifecycle.Lifecycle 4 | import android.arch.lifecycle.ViewModelProviders 5 | import android.content.Intent 6 | import android.os.Bundle 7 | import android.support.v7.app.AppCompatActivity 8 | import android.util.Log 9 | import com.dhh.demo.R 10 | import com.dhh.demo.rxlife1.RxLife1Activity 11 | import com.dhh.rxlife2.LifecycleOwnerScope 12 | import com.dhh.rxlife2.RxLife 13 | import io.reactivex.Single 14 | import kotlinx.android.synthetic.main.activity_rxlife2.* 15 | import java.util.concurrent.TimeUnit 16 | 17 | class RxLife2Activity : AppCompatActivity(), LifecycleOwnerScope { 18 | 19 | override fun onCreate(savedInstanceState: Bundle?) { 20 | super.onCreate(savedInstanceState) 21 | val vvv = ViewModelProviders.of(this).get(ViewModelTest::class.java) 22 | setContentView(R.layout.activity_rxlife2) 23 | btn_startRxLife1.setOnClickListener { startActivity(Intent(this, RxLife1Activity::class.java)) } 24 | Single.timer(10, TimeUnit.SECONDS) 25 | .doOnSubscribe { Log.d("RxLife2-onCreate", "doOnSubscribe") } 26 | .doOnDispose { Log.d("RxLife2-onCreate", "doOnDispose") } 27 | //标准使用模式,自动在[Lifecycle.Event.ON_DESTROY]注销 28 | .compose(RxLife.with(this).bindToLifecycle()) 29 | //指定在[Lifecycle.Event.ON_DESTROY]注销 30 | .compose(RxLife.with(this).bindOnDestroy()) 31 | //指定在某一生命周期注销,不常用 32 | .compose(RxLife.with(this).bindUntilEvent(Lifecycle.Event.ON_DESTROY)) 33 | .doOnSuccess { Log.d("RxLife2-onCreate", "doOnComplete") } 34 | .subscribe { it -> Log.d("RxLife2-onCreate", it.toString()) } 35 | Single.timer(1, TimeUnit.SECONDS) 36 | .toObservable() 37 | .bindOnDestroy() 38 | .subscribe { 39 | 40 | } 41 | 42 | // Observable.timer(10, TimeUnit.SECONDS) 43 | // .doOnSubscribe { Log.d("RxLife2-onCreate", "doOnSubscribe2") } 44 | // .doOnDispose { Log.d("RxLife2-onCreate", "doOnDispose2") } 45 | // //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_STOP]注销 46 | // .bindToLifecycle(this) 47 | // //指定在[Lifecycle.Event.ON_DESTROY]注销 48 | // .bindOnDestroy(this) 49 | // //指定在某一生命周期注销,不常用 50 | // .bindUntilEvent(this, Lifecycle.Event.ON_DESTROY) 51 | // .doOnComplete { Log.d("RxLife2-onCreate", "doOnComplete2") } 52 | // .subscribe { Log.d("RxLife2-onCreate", it.toString()) } 53 | } 54 | 55 | // override fun onResume() { 56 | // super.onResume() 57 | // Observable.timer(10, TimeUnit.SECONDS) 58 | // .doOnSubscribe { Log.d("RxLife2-onResume", "doOnSubscribe") } 59 | // .doOnDispose { Log.d("RxLife2-onResume", "doOnDispose") } 60 | // //标准使用模式,自动在[Lifecycle.Event.ON_PAUSE]注销 61 | // .compose(RxLife.with(this).bindToLifecycle()) 62 | // //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_PAUSE]注销 63 | // .bindToLifecycle(this) 64 | // .doOnComplete { Log.d("RxLife2-onResume", "doOnComplete") } 65 | // .subscribe { Log.d("RxLife2-onResume", it.toString()) } 66 | // 67 | // 68 | // Observable.timer(10, TimeUnit.SECONDS) 69 | // .doOnSubscribe { Log.d("RxLife2-onResume", "doOnSubscribe2") } 70 | // .doOnDispose { Log.d("RxLife2-onResume", "doOnDispose2") } 71 | // //标准使用模式,自动在[Lifecycle.Event.ON_DESTROY]注销 72 | // .compose(RxLife.with(this).bindOnDestroy()) 73 | // //通过kotlin扩展方法使用,推荐;自动在[Lifecycle.Event.ON_DESTROY]注销 74 | // .bindOnDestroy(this) 75 | // .doOnComplete { Log.d("RxLife2-onResume", "doOnComplete2") } 76 | // .subscribe { Log.d("RxLife2-onResume", it.toString()) } 77 | // } 78 | } 79 | -------------------------------------------------------------------------------- /demo/src/main/java/com/dhh/demo/rxlife2/ViewModelTest.kt: -------------------------------------------------------------------------------- 1 | package com.dhh.demo.rxlife2 2 | 3 | import android.arch.lifecycle.MutableLiveData 4 | import android.util.Log 5 | import io.reactivex.Observable 6 | import java.util.concurrent.TimeUnit 7 | 8 | /** 9 | * Created by dhh on 2019/12/16. 10 | * 11 | * @author dhh 12 | */ 13 | class ViewModelTest : BaseViewModel() { 14 | val userName = MutableLiveData() 15 | 16 | init { 17 | loadData() 18 | } 19 | 20 | fun loadData() { 21 | Observable.timer(5, TimeUnit.SECONDS) 22 | .map { "dhh" } 23 | .doOnSubscribe { Log.d("VVV", "doOnSubscribe") } 24 | .doOnDispose { Log.d("VVV", "doOnDispose") } 25 | .commit { userName.value = it } 26 | } 27 | 28 | } 29 | 30 | -------------------------------------------------------------------------------- /demo/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /demo/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | -------------------------------------------------------------------------------- /demo/src/main/res/layout/activity_rx_life1.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 |