Created
June 8, 2016 05:20
-
-
Save mindwing/d248c34e70241a51a383fd804bb13298 to your computer and use it in GitHub Desktop.
Agera Explained - 07.Custom observables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ViewClickedObservable extends BaseObservable | |
implements View.OnClickListener { | |
@Override | |
public void onClick(View v) { | |
dispatchUpdate(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment