圆形的图片的:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="#94C5FF" /> <size android:width="20dp" android:height="20dp" /> </shape>正方形的只需要把
android:shape="oval"换成
android:shape="rectangle"也就是shape的属性。