Android Shape绘制实用圆圈,并动态改变圆点的颜色

1.绘制实心圆


xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:useLevel="false">

android:width="1dp"
android:color="#000" />
android:width="20dp"
android:height="20dp" />


2. 布局引用

android:id="@+id/test"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/test"/>

3.动态设置颜色

TextView textView = (TextView) findViewById(R.id.ss);
GradientDrawable mm= (GradientDrawable)textView.getBackground();
mm.setColor(Color.BLACK);

你可能感兴趣的:(android)