Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public static RadioButton createARadioButton()
  2. {
  3. RadioButton radioButton = new RadioButton(null);
  4. return radioButton;
  5. }
  6.  
  7. radioButton = createARadioButton();
  8.  
  9. public static RadioButton createARadioButton(Context context)
  10. {
  11. RadioButton radioButton = new RadioButton(context);
  12. return radioButton;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement