Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <RadioGroup
  2. android:orientation="horizontal"
  3. android:id="@+id/radio_group"
  4. android:layout_width="match_parent"
  5. android:checkedButton="@+id/bt1"
  6. android:layout_height="wrap_content">
  7.  
  8. <RadioButton
  9. android:id="@+id/bt1"
  10. android:background="@drawable/toggle_bg"
  11. android:layout_weight="1"
  12. android:text="Left"
  13. android:textColor="@color/colorPrimary"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content" />
  16.  
  17. <RadioButton
  18. android:id="@+id/bt2"
  19. android:background="@drawable/toggle_bg"
  20. android:layout_weight="1"
  21. android:textColor="@color/colorPrimary"
  22. android:text="right"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content" />
  25. </RadioGroup>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement