利用RadioGroup和RadioButton实现单选且选中的效果自定图片

最近开发中需要用到一个选择取消的原因,只能单选,本来单选使用RadioGroup和RadioButton很容易实现,但是由于要用到自定义的选中的效果,还是花了点时间,我还是使用RadioGroup和RadioButton,但是自己设置一下选中的图片而已,具体如下


如果条目较多也可以放在ScrollView里面

  1. <RadioGroup
  2. android:id="@+id/radio_group"
  3. android:layout_width="match_parent"
  4. android:layout_height="300dp">
  5. <RadioButton
  6. android:id="@+id/radioButton6"
  7. android:layout_width="match_parent"
  8. android:layout_height="40dp"
  9. android:layout_gravity="end"
  10. android:layout_marginRight="20dp"
  11. android:button="@null"
  12. android:drawablePadding="100dp"
  13. android:drawableRight="@drawable/selector_checked_pay_mode"
  14. android:paddingLeft="20dp"
  15. android:text="误发拼车单"
  16. android:textColor="@color/text_middle"
  17. android:textSize="@dimen/m_textsize_agree_reminder_15"/>
  18. <include layout="@layout/view_line_2"/>
  19. <RadioButton
  20. android:id="@+id/radioButton1"
  21. android:layout_width="match_parent"
  22. android:layout_height="40dp"
  23. android:layout_gravity="end"
  24. android:layout_marginRight="20dp"
  25. android:button="@null"
  26. android:drawablePadding="100dp"
  27. android:drawableRight="@drawable/selector_checked_pay_mode"
  28. android:paddingLeft="20dp"
  29. android:text="行程有变,暂时不需要用车"
  30. android:textColor="@color/text_middle"
  31. android:textSize="@dimen/m_textsize_agree_reminder_15"/>
  32. </RadioGroup>


然后图片是自定义的一个drawable, 注意:必须设置checked属性,不能设置selected属性,否则没有选中的效果

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

然后获取RadioButton的内容

  1. radioGroup.setOnCheckedChangeListener(newRadioGroup.OnCheckedChangeListener(){
  2. @Override
  3. publicvoid onCheckedChanged(RadioGroup group,int checkedId){
  4. radioButton=(RadioButton)findViewById(radioGroup.getCheckedRadioButtonId());
  5. selectText= radioButton.getText().toString();
  6. }
  7. });
  8. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值