ここで指定されたコードを使用しています。
これらのコード ブロックをクラスとしてプロジェクトの 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 を変更することです。助けていただければ幸いです。ありがとうございました