在我的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>