shape 绘制图形(圆点,矩形等)

设置圆形

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    
    
    <corners android:radius="5dp">corners>
    
    <size android:width="15dp" android:height="15dp">size>
    
    <solid android:color="#ffff">solid>

shape>

设置矩形

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    
    
    <corners android:radius="5dp">corners>
    
    <size android:width="12dp" android:height="5dp">size>
    
    <solid android:color="#f0f">solid>

shape>

你可能感兴趣的:(shape 绘制图形(圆点,矩形等))