首先来一个shape的xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:useLevel="false">
<solid
android:color="#ff0" />
<size android:width="36dp"
android:height="36dp" />
</shape>
在代码中可以设置如下:
GradientDrawable p = (GradientDrawable) textview.getBackground();
p.setColor(Color.RED);