我正在使用 ActionBarSherlock 库。
在一个简单的布局中,我有以下代码:
<?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" >
<TextView
android:id="@+id/shareWhat"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:textSize="15dp"
android:text="@string/what_is_the_picture_about_" />
<TextView
android:id="@+id/shareProduct"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/product_underlined"
android:textColor="@android:color/holo_blue_dark"
android:textSize="25dp" />
<TextView
android:id="@+id/sharePrice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/price_underlined"
android:textColor="@android:color/holo_blue_light"
android:textSize="25dp" />
<TextView
android:id="@+id/shareStore"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/store_underlined"
android:textColor="@android:color/holo_blue_bright"
android:textSize="25dp" />
<TextView
android:id="@+id/shareMarket"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/market_underlined"
android:textColor="@android:color/holo_blue_bright"
android:textSize="25dp" />
</LinearLayout>
我希望 textColor 为蓝色, @android:color中有 3 个不同的值表示蓝色。我用了所有 3 个,来检查哪一个看起来不错。
1. android:textColor="@android:color/holo_blue_dark"
2. android:textColor="@android:color/holo_blue_light"
3. android:textColor="@android:color/holo_blue_bright"
但是white colored text
当我使用第一种两种颜色时,我得到了。如果我使用第三种颜色,则 textView 本身不可见。
甚至没有出现。
为什么会这样?
我正在使用应用程序主题作为
android:theme="@style/Theme.Sherlock"
在我的清单中。