我正在使用here给出的代码。
我将这些代码块作为类放在我的项目的util包中。然后在主要的活动课上我写了这个..
class MenuActivity {
// Variable declaration
private final CompositeSubscription mConnectionSubscription = new CompositeSubscription();
@Override
protected void onCreate(Bundle savedInstanceState) {
// Some initialisation of UI elements done here
mConnectionSubscription.add(AppObservable.bindActivity(this, NetworkUtils.observe(this)).subscribe(new Action1<NetworkUtils.State>() {
@Override
public void call(NetworkUtils.State state) {
if(state == NetworkUtils.State.NOT_CONNECTED)
Timber.i("Connection lost");
else
Timber.i("Connected");
}
}));
}
我的目标是监控更改并在网络更改为true false时静态更改MyApp类中定义的变量MyApp.isConnected。帮助将不胜感激。谢谢
答案 0 :(得分:6)
你在另一个帖子中问我答案。我回答得很晚,因为我需要一些时间来开发和测试解决方案,我觉得这很好。
我最近创建了一个名为ReactiveNetwork的新项目。
它是开源的,可在https://github.com/pwittchen/ReactiveNetwork获得。
您可以将以下依赖项添加到build.gradle
文件中:
dependencies {
compile 'com.github.pwittchen:reactivenetwork:x.y.z'
}
然后,您可以使用最新版本号替换x.y.z
。
之后,您可以通过以下方式使用库:
ReactiveNetwork.observeNetworkConnectivity(context)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Action1<ConnectivityStatus>() {
@Override public void call(Connectivity connectivity) {
if(connectivity.getState() == NetworkInfo.State.DISCONNECTED) {
Timber.i("Connection lost");
} else if(connectivity.getState() == NetworkInfo.State.CONNECTED) {
Timber.i("Connected");
}
}
});
如果您只想对单一类型的事件做出反应,您还可以使用RxJava中的filter(...)
方法。
您可以使用onResume()
方法创建订阅,然后在活动内的onPause()
方法中取消订阅。
您可以在GitHub上的项目网站上找到更多使用示例和示例应用程序。
此外,您可以阅读Android API中的NetworkInfo.State枚举,该API现已被库使用。
答案 1 :(得分:4)
尝试使用 rxnetwork-android :
public class MainActivity extends AppCompatActivity{
private Subscription sendStateSubscription;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Observable<RxNetwork.State> sendStateStream =
RxNetwork.stream(this);
sendStateSubscription = AppObservable.bindActivity(
this, sendStateStream
).subscribe(new Action1<RxNetwork.State>() {
@Override public void call(RxNetwork.State state) {
if(state == RxNetwork.State.NOT_CONNECTED)
Timber.i("Connection lost");
else
Timber.i("Connected");
}
});
}
@Override protected void onDestroy() {
sendStateSubscription.unsubscribe();
sendStateSubscription = null;
super.onDestroy();
}
}