RadioGroup分频器没有显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RadioGroup分频器没有显示相关的知识,希望对你有一定的参考价值。
我不知道为什么我的RadioGroup分频器没有显示。有人请说清楚。我已经看过Android radiogroup, divider between radiobuttons了。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:divider="@drawable/divider_color"
android:showDividers="middle" >
<RadioButton
android:id="@+id/first"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:button="@null"
android:checked="true"
android:drawableRight="@android:drawable/btn_radio"
android:text="First" />
<RadioButton
android:id="@+id/second"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="second" />
<RadioButton
android:id="@+id/third"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:text="third" />
</RadioGroup>
</LinearLayout>
我对divider_color
的形状是
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line" >
<solid android:color="#000000" />
</shape>
答案
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line" >
<stroke
android:width="1dp"
android:color="#000000" />
<size android:height="2dip" />
</shape>
如上所述更新您的drawable或使用下面的一个
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:height="1dp"></size>
<solid android:color="#000000" />
以上是关于RadioGroup分频器没有显示的主要内容,如果未能解决你的问题,请参考以下文章
单选按钮在动态创建的 RadioGroup 中没有正确选择/取消选择
如何将RadioGroup元素的ID转换为Android studio中的字符串?