gpt4 book ai didi

java - TextView文字颜色不变

转载 作者:行者123 更新时间:2023-11-29 07:54:03 25 4
gpt4 key购买 nike

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

XML:

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

/>

Java:

@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")); }

知道为什么文本颜色没有改变吗?

最佳答案

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

试试这个

关于java - TextView文字颜色不变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19165219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com