Android 2.3 で動作するアプリケーションを構築しており、ActionBarSherlock と HoloEverywhere ライブラリの両方を追加しました。
ActionBarSherlock を使用するには、次のように Theme.Sherlock を使用する必要があります。
<application
...
android:theme="@style/Theme.Sherlock"
... >
そして、それは大丈夫です。
私の主な活動は非常に単純です: 5 行の ListView だけです (私は ListActivity を使用しません)。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/menuListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
Android 2.3なので、まだオレンジと黒のテーマがあります(もちろんActionBarを除く)。次に、マニフェストを次のように変更して、HoloEverywhere テーマを追加します。
<application
...
android:theme="@style/Theme.HoloEverywhereDark.Sherlock"
... >
しかし、それは何も変わりません...何が欠けていますか?