3

我的应用程序在 nexus 4 lollipop 设备上除了黑色和白色之外没有显示文本颜色。我的应用程序只包含一个带有 hello world 红色文本的文本视图。但它在我的设备上显示为黑色。

模拟器显示红色“Hello world!” 但我的设备显示为黑色....无论我选择什么颜色,nexus 4 棒棒糖设备都显示为黑色....抱歉,我是新来的,所以我还不能发布图片。

这是我的 xml 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">

    <TextView
        android:text="@string/hello_world"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView"
        android:textColor="#f00"
        android:textSize="40sp"
        android:gravity="center"/>

</RelativeLayout>
4

1 回答 1

0

尝试使用

android:textColor="#ffff0000"

代替

android:textColor="#f00"
于 2015-04-06T12:39:02.833 回答