我想更改标题栏颜色。按照此处的说明进行操作 ,或者在 AndroidManifest 中使用 Notitle bar 消除标题栏会导致在列表视图中不显示文本字体(我使用“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代码与上面的链接相同)
有什么解决办法吗?
谢谢!