Guest User

Untitled

a guest
Nov 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class ButtonRowType implements RowType {
  2.  
  3. private Context context;
  4.  
  5. public ButtonRowType(Context context) {
  6. this.context = context;
  7. }
  8.  
  9. public View.OnClickListener getOnClickListener() {
  10. return new View.OnClickListener() {
  11. @Override
  12. public void onClick(View v) {
  13. Toast.makeText(context, "Click!", Toast.LENGTH_SHORT).show();
  14. }
  15. };
  16. }
  17. }
Add Comment
Please, Sign In to add comment