Exemple #1
0
  private void onSearchClicked() {
    String username = inputView.getEditText().getText().toString().trim();

    userService
        .info(username)
        .compose(bindToLifecycle())
        .lift(BusyDialogFragment.busyDialog(this))
        .subscribe(this::onSearchSuccess, this::onSearchFailure);
  }