shape的基本使用

    shape与selector相似 ,都在drawable 目录下/ ,可以设置为edittext的backgroud/src .

shape的使用步骤:

  1. res/drawable 新建xml(命名可以shape开头)
  2. xml文件编写
1.
2.
    android:shape=["rectangle"(矩形) | "oval"(椭圆) | "line"(线性) | "ring"(环形) >

    
6.        android:angle="180"
7. //角度  可以改变  ,尽量是45度的倍数
8.        android:centerColor="#0f0"
9.        android:endColor="#00f"
10.        android:startColor="#f00" />


11.    
12.    


17.    
18.    


19.    
20.    


21.//描边设置直线与虚线
22.    
27.
28.
29.    
30.
31.
  1. 使用
    android:background="@drawable/shape_location_edittext"

你可能感兴趣的:(shape的基本使用)