我正在使用这样的形状属性:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:padding="10dp">
<solid
android:color="#FFFFFF" />
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp" />
</shape>
和
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/rounded_textview">
</TextView>
如果我在运行时使用以下方法更改颜色:
TextView.setBackgroundColor();
我使用的形状消失了。我应该怎么做才能以正确的方式改变它?还是我必须为不同的颜色生成很多形状?
谢谢。