-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathMainActivity.java
181 lines (161 loc) · 6.33 KB
/
MainActivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
* Copyright 2016 nekocode
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.nekocode.rxlifecycle.sample;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import java.util.concurrent.TimeUnit;
import cn.nekocode.rxlifecycle.LifecycleEvent;
import cn.nekocode.rxlifecycle.RxLifecycle;
import io.reactivex.Completable;
import io.reactivex.Flowable;
import io.reactivex.Maybe;
import io.reactivex.Observable;
import io.reactivex.Single;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.functions.Action;
import io.reactivex.functions.Consumer;
import io.reactivex.schedulers.Schedulers;
/**
* @author nekocode ([email protected])
*/
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tellLifecycleState();
final Button button1 = (Button) findViewById(R.id.button1);
final Button button2 = (Button) findViewById(R.id.button2);
final Button button3 = (Button) findViewById(R.id.button3);
final Button button4 = (Button) findViewById(R.id.button4);
final Button button5 = (Button) findViewById(R.id.button5);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
testFlowable();
button1.setEnabled(false);
}
});
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
testObservable();
button2.setEnabled(false);
}
});
button3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
testCompletable();
}
});
button4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
testSingle();
}
});
button5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
testMaybe();
}
});
}
private void tellLifecycleState() {
RxLifecycle.bind(this)
.toObservable()
.subscribe(new Consumer<LifecycleEvent>() {
@Override
public void accept(LifecycleEvent event) throws Exception {
switch (event) {
case START:
toast("Your activity is started.");
break;
case STOP:
toast("Your activity is stopped.");
break;
}
}
});
}
private void testFlowable() {
Flowable.interval(0, 2, TimeUnit.SECONDS)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.compose(RxLifecycle.bind(this).<Long>cancelFlowableWhen(LifecycleEvent.DESTROY_VIEW))
.subscribe(new Consumer<Long>() {
@Override
public void accept(Long n) throws Exception {
toast("Flowable -> " + n.toString());
}
});
}
private void testObservable() {
Observable.interval(0, 2, TimeUnit.SECONDS)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.compose(RxLifecycle.bind(this).<Long>disposeObservableWhen(LifecycleEvent.DESTROY_VIEW))
.subscribe(new Consumer<Long>() {
@Override
public void accept(Long n) throws Exception {
toast("Observable -> onNext(" + n.toString() + ")");
}
});
}
private void testCompletable() {
Completable.timer(3, TimeUnit.SECONDS)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.compose(RxLifecycle.bind(this).disposeCompletableWhen(LifecycleEvent.DESTROY_VIEW))
.subscribe(new Action() {
@Override
public void run() throws Exception {
toast("Completable -> onComplete()");
}
});
}
private void testSingle() {
Single.timer(3, TimeUnit.SECONDS)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.compose(RxLifecycle.bind(this).<Long>disposeSingleWhen(LifecycleEvent.DESTROY_VIEW))
.subscribe(new Consumer<Long>() {
@Override
public void accept(Long n) throws Exception {
toast("Single -> onSuccess()");
}
});
}
private void testMaybe() {
Maybe.timer(3, TimeUnit.SECONDS)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.compose(RxLifecycle.bind(this).<Long>disposeMaybeWhen(LifecycleEvent.DESTROY_VIEW))
.subscribe(new Consumer<Long>() {
@Override
public void accept(Long n) throws Exception {
toast("Maybe -> onSuccess()");
}
});
}
private void toast(String text) {
Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();
}
}