其他分享
首页 > 其他分享> > Android系统. ImageView as RadioButton [复制]

Android系统. ImageView as RadioButton [复制]

作者:互联网

参见英文答案 > Adding custom radio buttons in android                                    10个
我想要一些ImageViews作为RadioButtons工作.但我不希望RadioButton的迷你按钮选择它;我希望这个迷你按钮消失,ImageView成为整个按钮.因此,像下面这样的解决方案并不好.

<RadioButton
    android:id="@+id/myId"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:drawableRight="@drawable/myIcon"/>

是否有一个小部件或其他东西,我可以使用ImageViews作为RadioButtons,或者我应该自己编程按钮的所有逻辑?

解决方法:

我建议您创建自定义单选按钮.查看这个answer的Evan Bashir

标签:android,android-imageview,imageview,android-radiogroup,android-radiobutton
来源: https://codeday.me/bug/20190527/1165976.html