我在android UI中使用StateList来显示不同状态视图的不同drawable。
继承代码。问题是当我将android:background="@drawable/state_list"
放在第一个LinearLayout上时,它会突出显示“按下”事件的状态。
但是如果我将相同的StateList附加到第二个LinearLayout,它就不起作用。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="5dp"
android:background="@drawable/highlight_states"> // this WORKS!
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"
android:background="@drawable/highlight_states"> // this DOES NOT WORK.
<ImageButton
android:id="@+id/profile_call_button"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_gravity="center"
android:background="@color/transparent"
android:scaleType="fitCenter"
android:src="@drawable/icon_phone_green" />
</LinearLayout>
</LinearLayout>
继承我正在使用的StateList的代码。 highlight_states.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/selected_textbox" /> <!-- pressed -->
<item android:state_focused="true" android:drawable="@drawable/highlight_pressed" /> <!-- focused -->
</selector>
答案 0 :(得分:1)
设置子LinearLayout
android:duplicateParentState="true"