在繪製文件夾:可用選擇器繪製?
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/icon2" />
<item android:drawable="@drawable/icon3" />
</selector>
和佈局僅僅是簡單的線性佈局填滿了整個空間
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/on_touch_"
android:weightSum="1" android:focusable="true" android:focusableInTouchMode="true">
</LinearLayout>
,當我按下這個什麼都不會發生
如果我添加,例如,一些文本視圖並分配android:background="@drawable/on_touch_"
,然後按下textview正確更改圖像。
線性佈局的問題在哪裏,爲什麼按下時不會改變圖像?
編輯: 我相信我的可繪製選擇器是好的,因爲我把它作爲背景對其他元素,它工作。
但我的問題是如何設置繪製到根元素
你想要實現什麼? –