我有一个TextView的自定义背景:
<?xml version="1.0" encoding="utf-8"?>
<corners android:radius="45dp"/>
<padding android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp"/>
我想动态地改变它的许多颜色。所以我试图改变背景颜色:
title.setBackgroundColor(ContextCompat.getColor(mContext, R.color.red));
但是在我改变背景颜色后,我看不到它的角落。如何为该textview动态更改颜色?
答案 0 :(得分:1)
这是因为使用title.setBackgroundColor()
您正在替换自定义背景,因此角落消失。
尝试检索drawable并改变其颜色。
GradientDrawable titleDrawable = (GradientDrawable) title.getBackground();
titleDrawable.setColor(Color.RED)