TextView文本颜色不会更改

时间:2013-10-03 17:13:54

标签: java android

我正在尝试更改TextView的文字颜色。这是我正在使用的代码:

XML:

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/eks"

    />

爪哇:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_schedule);
        Intent intent = getIntent();
        TextView txt = (TextView) findViewById(R.id.textView1);

        txt.setTextColor(Color.parseColor("#FFFFFF"));  }

为什么文字颜色没有变化?

4 个答案:

答案 0 :(得分:3)

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/eks"
    android:textColor="#ffffff" />

试试这个

答案 1 :(得分:1)

我会使用Android资源系统来获得所有美好而漂亮的东西。

/res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="white">#FFFFFF</color>
</resources>

/res/layout/my_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/eks"
        android:textColor="@color/white" />
</LinearLayout>

答案 2 :(得分:1)

如果您使用主题Theme.AppCompat.Light.NoActionBar的扩展, TextView的颜色不能再改变了。

答案 3 :(得分:0)

试试这个:

txt.setTextColor(Color.WHITE);