ActionBarSherlockで押されたアイテムの色を変更する方法がわかりません。テーマを上書きしていますがWidget.Sherlock.Light.ActionBar.Solid.Inverse
、このテーマのソースを調べていると、アイテムを押したときの青い色が見つかりません。誰かが私を助けることができますか?
質問する
693 次
1 に答える
1
ActionButtonの背景を担当する1つのスタイル属性があります:actionBarItemBackground。独自の検出されたDrawableStateListを値として設定するだけです。
例として、デフォルトのDrawableStateListを次に示します。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abs__list_selector_disabled_holo_dark" />
<item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/abs__list_selector_disabled_holo_dark" />
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/abs__list_selector_background_transition_holo_dark" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/abs__list_selector_background_transition_holo_dark" />
<item android:state_focused="true" android:drawable="@drawable/abs__list_focused_holo" />
<item android:drawable="@android:color/transparent" />
于 2012-06-21T21:46:17.377 に答える