如何在选定的ViewGroup上设置选择器

时间:2018-10-14 09:50:16

标签: android selector

在我的RelativeLayout上,我创建了selector以在单击后永久选择它,但是它对我不起作用。当我添加状态state_activated时,它什么也不做,当我用state_pressed替换状态时,它会显示一次,然后在离开布局时隐藏。

选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_activated="true">
        <shape android:shape="rectangle" >
            <corners
                android:bottomRightRadius="@dimen/radius_round_btn"
                android:topRightRadius="@dimen/radius_round_btn" />
            <solid android:color="@color/colorAccent"/>
        </shape>
    </item>
</selector>

0 个答案:

没有答案