我只是有一个愚蠢的问题......我在我的应用程序中使用(或者更好,我想使用)主题全息灯:我已在清单文件中设置它。看下面的截图:文字太浅了吧?好的,我知道我可以设置它,但我的问题是:它是全息主题中的真实文本颜色还是我的应用程序中有错误?我想是因为奇怪的是在谷歌中选择了这样一种难以辨认的颜色。
编辑:
我用属性设置主题
android:theme="@android:style/Theme.Holo.Light"
的应用程序元素。这是我用 listfragment 填充的 listview 代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/songsLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="left"
android:orientation="vertical"
android:padding="12dp" >
<ListView
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fastScrollEnabled="true"
android:scrollbarStyle="insideInset"
android:textFilterEnabled="false"/>
<TextView
android:id="@+id/songsFragment_titleTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="7dp"
android:paddingBottom="0dp"
android:textSize="18sp"
android:lines="1">
</TextView>
<TextView
android:id="@+id/songsFragment_artistTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="7dp"
android:paddingTop="0dp"
android:lines="1"
android:textSize="14sp">
</TextView>
</LinearLayout>
希望你能帮我 :)