3

新しい ActionBarCompat サポート ライブラリを使用しています。
アクションバーのアクション ボタンは、押すと背景が変わるはずです。Android 4.3 では動作しますが、Gingerbread では動作しません。Gingerbread では、ボタンを押しても背景は変わりません。セレクターも変更しました:

<style name="Theme.MyCustomTheme" parent="@style/Theme.AppCompat.Light">
    <item name="selectableItemBackground">@drawable/actionbar_item_bg_selector</item>
</style>

また、Android 4.3 では動作しますが、Gingerbread では動作しません。これはバグですか?

4

1 に答える 1

1

私は何が問題なのかを理解しました。Android セレクターをコピーして変更する必要があります。

スタイル.xml

<style name="Theme.NewTransaction" parent="@style/Theme.AppCompat.Light.DarkActionBar">
        <item name="selectableItemBackground">@drawable/actionbar_item_bg_selector</item>
</style>

actionbar_item_bg_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_window_focused="false" android:drawable="@color/transparent" />

    <!-- 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/list_selector_background_disabled" />
    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/list_selector_background_disabled" />
    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition" />
    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition" />
    <item android:state_focused="true"                                                             android:drawable="@drawable/list_selector_background_focused" />
    <item android:drawable="@color/transparent" />

</selector>

私の問題はこのコメントに関連していると思います:
これら2つは同じリソースを指していますが、2つの状態があるため、押された状態から抜け出すと、ドローアブルはそれ自体を無効にします。

于 2013-08-03T21:05:38.300 に答える