我正在尝试更改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")); }
为什么文字颜色没有变化?
答案 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资源系统来获得所有美好而漂亮的东西。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
</resources>
<?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);