我正在使用这里给出的代码。
我将这些代码块作为类放在项目的 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");
}
}));
}
我的目标是监视更改并在网络更改为真假时静态更改 MyApp 类中定义的变量 MyApp.isConnected。帮助将不胜感激。谢谢