0

我想为我想要的一些单选按钮创建一些自定义的可绘制选择器。下面是一个我想要我想要的可绘制选择器的示例。它们是PublicFollowers选择器,如下所示:

在此处输入图像描述

问题是我无法以这种方式设计我的选择器,我似乎无法弄清楚为什么我无法在未选择的单选按钮上获得带有白色背景的灰色轮廓。

这是我的尝试:

隐私切换布局.xml:

<?xml version="1.0" encoding="utf-8"?>
    <RadioGroup
    android:layout_margin="16dp"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:checkedButton="@+id/offer"
        android:id="@+id/privacy_toggle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/pick_out_line"
        android:orientation="horizontal">

        <RadioButton
            android:id="@+id/public_toggle"
            android:background="@drawable/toggle_widget_background"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:button="@null"
            android:gravity="center"
            android:text="@string/publicString"
            android:textAllCaps="true"
            android:textSize="18sp"
            android:textColor="@color/white" />

        <RadioButton
            android:id="@+id/followers_toggle"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/toggle_widget_background"
            android:button="@null"
            android:gravity="center"
            android:text="@string/followers"
            android:checked="true"
            android:textSize="18sp"
            android:textAllCaps="true"
            android:textColor="@color/white" />
    </RadioGroup>

可绘制/pick_out_line.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="2dp" />
    <solid android:color="@color/teal" />
    <stroke
        android:width="5dp"
        android:color="@color/material_color_grey_400" />
</shape>

toggle_widget_background.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/teal" android:state_checked="true" />
    <item android:drawable="@color/teal" android:state_pressed="true" />
    <item android:drawable="@color/white" />
</selector>

我想pick_out_line.xml,将 5dp 设置stroke为 5dp 应该会使边框变灰,但它不会在RadioButton. 此外,我似乎无法弄清楚如何RadioButton使用带有灰色文本的白色背景制作未选中的内容。如果有人可以帮助我,那就太好了。谢谢。

4

1 回答 1

0

你错了。该组不应该有背景。制作 2 个版本的 pick_out_line.xml、一个 pick_out_line_selected 和一个 pick_out_line_unselected.xml。在那种状态下,按照你想要的方式设计每一个。然后编辑你的 toggle_widget_background.xml 文件,android:drawable 应该是上面的 2 个文件,而不是颜色。将此文件设置为切换的背景。

于 2016-09-13T20:27:37.517 回答