在Android中制作看起来像标签的按钮

前端之家收集整理的这篇文章主要介绍了在Android中制作看起来像标签的按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要这样的样子.他们似乎不是标签,所以我相信他们是按钮.

我可以通过保持选择器可绘制,通过切换按钮来实现类似的类型.

  1. <ToggleButton
  2. android:id="@+id/toggleButton"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_gravity="center_horizontal"
  6. android:background="@drawable/custom_selector"
  7. android:textOn=" Button1 Button2"
  8. android:textOff=" Button1 Button2" />

但是它们只有两个值,通过点击选定的选项卡可以选择其他选项,而不选择当前选项.但我想要完全像选项卡.有人可以帮我实现吗?提前致谢.

解决方法

您必须为所有按钮创建选择器,并使用带有选择器背景和空按钮的RadioGroup.

关注@Andru答案创建选择器..

下面是RadioGroup代码.

  1. <RadioGroup
  2. android:id="@+id/rdogrp"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_margin="8dp"
  6. android:gravity="center"
  7. android:orientation="horizontal" >
  8.  
  9. <RadioButton
  10. android:id="@+id/btn1"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_margin="0dp"
  14. android:background="@drawable/btn1Selector"
  15. android:button="@null"
  16. android:checked="true"
  17. android:gravity="center" />
  18.  
  19. <RadioButton
  20. android:id="@+id/btn2"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_margin="0dp"
  24. android:background="@drawable/btn2Selector"
  25. android:button="@null"
  26. android:gravity="center" />
  27.  
  28. <RadioButton
  29. android:id="@+id/btn3"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_margin="0dp"
  33. android:background="@drawable/btn3Selector"
  34. android:button="@null"
  35. android:gravity="center" />
  36.  
  37. <RadioButton
  38. android:id="@+id/btn4"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_margin="0dp"
  42. android:background="@drawable/btn4Selector"
  43. android:button="@null"
  44. android:gravity="center" />
  45. </RadioGroup>

这里是btn1Selector.xml的示例代码

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item android:drawable="@drawable/btn1_selected" android:state_checked="true" />
  4. <item android:drawable="@drawable/btn1_normal" android:state_checked="false"/>
  5. </selector>

猜你在找的Android相关文章