RelativeLayout上的选择器不起作用

时间:2016-03-24 14:03:18

标签: android android-layout view android-relativelayout

我知道有很多关于此的主题,我读了所有这些。但我仍然无法使该选择器在RelativeLayout上运行。

所以我需要你的帮助。这是我的代码。

选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:drawable="@drawable/selected_background"/>
<item android:state_pressed="true" android:drawable="@drawable/selected_background" />
<item android:state_selected="true" android:drawable="@drawable/selected_background" />
<item android:drawable="@drawable/unselected_background" />

布局:

<LinearLayout 
    android:id="@+id/calendarLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:descendantFocusability="afterDescendants"
    android:clickable="false"
    android:focusable="false"
    android:orientation="vertical">
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:clickable="false"
    android:descendantFocusability="afterDescendants"
    android:weightSum="3">
    <RelativeLayout
        android:id="@+id/calendarItem1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
       android:background="@drawable/selector_dashboard_calendar_icon"
        android:clickable="true"
        android:focusable="true"
        android:padding="3dp">

        <TextView
            android:id="@+id/dateTextView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:focusable="false"
            android:clickable="false"
            android:lines="2"
            android:padding="3dp"
            android:textColor="@color/white"
            android:textSize="12dp" />
    </RelativeLayout>
</LinearLayout>
...
</LinearLayout>

正如您所看到的,我使子视图不可点击且不可聚焦,除了我放置选择器之外的所有父布局都具有后代可聚焦性。发生的情况是背景仅在单击布局时才更改,但我希望在所选状态下更改它。

0 个答案:

没有答案