按下按鈕時是否可以將樣式應用於按鈕?當按下按鈕時將不同的樣式應用於按鈕
如果我有style.xml風格:
<resources>
<style name="test">
<item name="android:textStyle">bold</item>
</style>
</resources>
選擇在button.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/test_pressed"
style="@style/test"
android:state_pressed="true"/>
<item android:drawable="@drawable/test_focused"
android:state_focused="true"/>
<item android:drawable="@drawable/test_normal"/>
</selector>
那麼我將如何引用button.xml在我的佈局?
<Button
...
android:???="button"/>
謝謝!
我有點困惑與你的答案。你能詳細解釋一下嗎?所以我會使用android:id =「button」在我的佈局中引用button.xml? – user440308 2010-09-17 19:19:38