我的应用程序在nexus 4棒棒糖设备上没有显示除黑白外的文字颜色。我的应用程序只包含一个带有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>
答案 0 :(得分:0)
尝试使用
android:textColor="#ffff0000"
而不是
android:textColor="#f00"