gpt4 book ai didi

java - Android 通过 java 代码更改 XML 文件的背景

转载 作者:行者123 更新时间:2023-12-01 16:37:53 26 4
gpt4 key购买 nike

我有一个 Textview,其背景附加了一个 XML 文件。现在我想用 setBackgroundColor() 更改 Textview 的背景,但它不起作用,因为必须更改 XML 文件的背景颜色。如何更改 my_border XML 文件的背景颜色?

XML TextView :

<TextView
android:id="@+id/textView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="150dp"
android:background="@drawable/my_border"
android:text="Hey"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

XML Textview 边框文件:

<?xml version="1.0" encoding="utf-8"?>

<!-- View background color -->
<solid
android:color="#fff" >
</solid>

<!-- View border color and width -->
<stroke
android:width="1dp"
android:color="#000" >
</stroke>

<!-- The radius makes the corners rounded -->
<corners
android:radius="5dp" >
</corners>

<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp">
</padding>

最佳答案

试试这个方法

private void recolor(Context context, TextView textView, @ColorInt int color,int drawableResourceId) {
Drawable unwrappedDrawable = AppCompatResources.getDrawable(context, drawableResourceId);
if (unwrappedDrawable != null) {
DrawableCompat.wrap(unwrappedDrawable);
DrawableCompat.setTint(unwrappedDrawable, color);
textView.setBackground(unwrappedDrawable);
}

}

假设您希望 TextView 具有红色背景,则如下所示

TextView mTextView = findViewById(R.id.textView7);

recolor(this, mTextView , getResources().getColor(R.color.red),R.drawable.my_border);

关于java - Android 通过 java 代码更改 XML 文件的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61921805/

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