Java Code Examples for com.jakewharton.rxbinding.view.RxView#clicks()

The following examples show how to use com.jakewharton.rxbinding.view.RxView#clicks() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClaimPromotionDialogFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> onUpdateWalletClick() {
  return RxView.clicks(updateWalletButton);
}
 
Example 2
Source File: AppViewFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickRateAppLarge() {
  return RxView.clicks(rateAppButtonLarge);
}
 
Example 3
Source File: SearchResultFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> toolbarClick() {
  return RxView.clicks(toolbar);
}
 
Example 4
Source File: AppViewFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickDeveloperPermissions() {
  return RxView.clicks(infoPermissions);
}
 
Example 5
Source File: AppViewFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickDeveloperPrivacy() {
  return RxView.clicks(infoPrivacy);
}
 
Example 6
Source File: HomeContainerFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> toolbarUserClick() {
  return RxView.clicks(userAvatar);
}
 
Example 7
Source File: AppViewFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickTopDonorsDonateButton() {
  return RxView.clicks(listDonateButton);
}
 
Example 8
Source File: ProfileStepOneFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override @NonNull public Observable<Void> moreInfoButtonClick() {
  return RxView.clicks(moreInfoBtn);
}
 
Example 9
Source File: SearchResultFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickEverywhereSearchButton() {
  return RxView.clicks(allStoresButton);
}
 
Example 10
Source File: MyAccountFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> aptoideUploaderCardViewClick() {
  return RxView.clicks(aptoideUploaderCardView);
}
 
Example 11
Source File: TotalPeopleView.java    From Defrag with Apache License 2.0 4 votes vote down vote up
@NonNull @Override public Observable<?> onSubmit() {
	return RxView.clicks(floatingActionButton);
}
 
Example 12
Source File: ClaimPromotionDialogFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> onCancelWalletUpdate() {
  return RxView.clicks(cancelUpdateWalletButton);
}
 
Example 13
Source File: MyAccountFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> editUserProfileClick() {
  return RxView.clicks(editProfileButton);
}
 
Example 14
Source File: MyStoresFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> imageClick() {
  return RxView.clicks(userAvatar);
}
 
Example 15
Source File: MyAccountFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> userClick() {
  return RxView.clicks(myProfileView);
}
 
Example 16
Source File: AppCoinsInfoFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> cardViewClick() {
  return RxView.clicks(appCardView);
}
 
Example 17
Source File: AppViewFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> clickDeveloperEmail() {
  return RxView.clicks(infoEmail);
}
 
Example 18
Source File: AppCoinsInfoFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> catappultButtonClick() {
  return RxView.clicks(catappultDevButton);
}
 
Example 19
Source File: WizardFragment.java    From aptoide-client-v8 with GNU General Public License v3.0 4 votes vote down vote up
@Override public Observable<Void> skipWizardClick() {
  return RxView.clicks(skipButton);
}
 
Example 20
Source File: HomeView.java    From android-rxmvp-tutorial with Apache License 2.0 4 votes vote down vote up
public Observable<Void> observeButton() {
  return RxView.clicks(usernameLookUpBtn);
}