gpt4 book ai didi

android - RadioGroup 分隔符未显示

转载 作者:行者123 更新时间:2023-12-04 18:06:53 26 4
gpt4 key购买 nike

我不知道为什么我的 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" />

关于android - RadioGroup 分隔符未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24331935/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com