0

我正在使用 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"

在我的清单中。

4

2 回答 2

2

这些颜色是平台的一部分,而不是 ActionBarSherlock。它们也是API 14+ 而已

于 2012-09-27T06:38:34.523 回答
1

android:textColor 属性正在寻找颜色十六进制字符串,即:

android:textColor="#0f0" 

那会让它变绿。找到您想要的颜色的十六进制值,并将其设置为

于 2014-10-25T00:22:15.440 回答