gpt4 book ai didi

android - 以编程方式在 Android 库 22 中的 TextView 中设置 TextColor

转载 作者:搜寻专家 更新时间:2023-11-01 09:41:13 25 4
gpt4 key购买 nike

最近我对我的应用程序做了一些更改,由于我不理解“setTextColor”方法的原因,它似乎不再有效。

在我的 XML 中,我有一个 ListView ,我以编程方式在这个 ListView 中添加了 TextView。

XML:

   <LinearLayout
android:id="@+id/activity_game_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|top"
android:orientation="vertical"
android:padding="7dp" >
</LinearLayout>

Java:

textView = new TextView(getContext());
textView.setText("some text");
textView.setTextSize(20f);
textView.setGravity(Gravity.CENTER);
textView.setTextColor(Color.BLACK);
textView.setTextAppearance(getContext(), android.R.style.TextAppearance_Medium);
addView(textView);

但是无论我做什么,这个文本都是白色的。为什么?

最佳答案

我试过你的代码,我猜麻烦的因素是 setTextAppearance。事实上,在这个调用之后调用 setTextColor() 解决了这个问题。下面的代码非常适合我:

        TextView textView = new TextView(this);
textView.setText("some text");
textView.setTextSize(20f);
textView.setGravity(Gravity.CENTER);
// textView.setTextColor(Color.RED);
textView.setTextAppearance(this, android.R.style.TextAppearance_Medium);
textView.setTextColor(Color.RED);
// setContentView(textView);

我不知道这个问题的真正原因。

关于android - 以编程方式在 Android 库 22 中的 TextView 中设置 TextColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39731254/

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