Guest User

Untitled

a guest
Feb 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package com.abizareyhan;
  2.  
  3. import android.content.Context;
  4. import android.support.v7.widget.AppCompatButton;
  5. import android.util.AttributeSet;
  6.  
  7. public class CustomizableButton extends AppCompatButton {
  8. public CustomizableButton(Context context) {
  9. super(context);
  10. }
  11.  
  12. public CustomizableButton(Context context, AttributeSet attrs) {
  13. super(context, attrs);
  14. }
  15.  
  16. public CustomizableButton(Context context, AttributeSet attrs, int defStyleAttr) {
  17. super(context, attrs, defStyleAttr);
  18. }
  19. }
Add Comment
Please, Sign In to add comment