タイトル バーの色を変更したい。こちらの手順に従う か、AndroidManifest で Notitle バーを使用してタイトル バーを削除すると、リスト ビューにテキスト フォントが表示されなくなります (「simple_list_item_checked」リストビューを使用します)。
このアクティビティの xml は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFAFA"
>
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/green_button"
android:text="@string/show_items_kfc"
android:onClick="onClick"/>
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
(残りの xml コードは上記のリンクと同じです)
これに対する解決策はありますか?
ありがとう!