Skip to content

Instantly share code, notes, and snippets.

@rickyngk
Created April 4, 2016 04:04
Show Gist options
  • Save rickyngk/d01be0e47c0d93cda765f914e993ad7b to your computer and use it in GitHub Desktop.
Save rickyngk/d01be0e47c0d93cda765f914e993ad7b to your computer and use it in GitHub Desktop.
public class SampleViewModel {
private String buttonTitle = "Click me!";
private Context context;
public SampleViewModel(Context context) {
this.context = context;
}
public String getButtonTitle() {
return buttonTitle;
}
public void onClick(View v) {
Toast.makeText(this.context, "Hello", Toast.LENGTH_LONG).show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment