Exemple #1
0
 private void onClickLockUnlockGroup(View view) {
   if (isRunning) {
     if (isLocked) {
       Toast.makeText(this, "Group unlocked", Toast.LENGTH_SHORT).show();
       lockUnlock.setImageDrawable(unlockDrawable);
       observableGroup.unlock();
     } else {
       Toast.makeText(this, "Group locked", Toast.LENGTH_SHORT).show();
       lockUnlock.setImageDrawable(lockDrawable);
       observableGroup.lock();
     }
     isLocked = !isLocked;
   }
 }
Exemple #2
0
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    startStop = (FloatingActionButton) findViewById(R.id.fab);
    lockUnlock = (FloatingActionButton) findViewById(R.id.fab_pause_resume);
    alarmOffDrawable = ContextCompat.getDrawable(this, R.drawable.ic_alarm_off_black_24dp);
    alarmDrawable = ContextCompat.getDrawable(this, R.drawable.ic_alarm_black_24dp);
    lockDrawable = ContextCompat.getDrawable(this, R.drawable.ic_lock_outline_black_24dp);
    unlockDrawable = ContextCompat.getDrawable(this, R.drawable.ic_lock_open_black_24dp);
    output = (TextView) findViewById(R.id.txt_output);
    setSupportActionBar(toolbar);

    startStop.setOnClickListener(this::onClickStartStopTimer);
    lockUnlock.setOnClickListener(this::onClickLockUnlockGroup);

    SampleApplication application = (SampleApplication) getApplication();
    observableManager = application.observableManager();
    timerObservable = application.timerObservable();

    if (savedInstanceState == null) {
      observableGroup = observableManager.newGroup();
    } else {
      // This doesn't quite work 100% of the time, since in some specific scenarios (eg.: your app
      // was killed while in background), when your activity is recreated, your process is also
      // recreated, which causes ObservableManager to be empty (no groups). In this case, getGroup()
      // would crash since it's obviously not there. It is left as an exercise for the reader on
      // how to work around this situation.
      observableGroup = observableManager.getGroup(savedInstanceState.getLong(GROUP_ID));
      if (savedInstanceState.getBoolean(IS_RUNNING)) {
        isRunning = true;
        startStop.setImageDrawable(alarmOffDrawable);
      }
    }

    // Make sure no events are received until we are ready to display them. Locking the group
    // will cache any results so they can be delivered immediately when you unlock() if there are
    // any available
    observableGroup.lock();

    if (observableGroup.hasObservable(OBSERVABLE_TAG)) {
      observableGroup
          .<Long>observable(OBSERVABLE_TAG)
          .onBackpressureBuffer()
          .observeOn(AndroidSchedulers.mainThread())
          .subscribe(observer);
    }
  }
Exemple #3
0
 @Override
 protected void onPause() {
   super.onPause();
   Log.d(TAG, "onPause()");
   observableGroup.lock();
 }