Android的Shape使用

关于Shape的定义

<shape
xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape=["rectangle" | "oval" | "line" | "ring"] >
     <corners (圆角)
         android:radius="integer"
         android:topLeftRadius="integer"
         android:topRightRadius="integer"
         android:bottomLeftRadius="integer"
         android:bottomRightRadius="integer" />
     <gradient (渐变)
         android:angle="integer"
         android:centerX="integer"
         android:centerY="integer"
         android:centerColor="integer"
         android:endColor="color"
         android:gradientRadius="integer"
         android:startColor="color"
         android:type=["linear" | "radial" | "sweep"]
         android:useLevel=["true" | "false"] />
     <padding (间隔 各方向的间隔)
         android:left="integer"
         android:top="integer"
         android:right="integer"
         android:bottom="integer" />
     <size (大小 宽度和高度)
         android:width="integer"
         android:height="integer" />
     <solid (填充)
         android:color="color" />
     <stroke (描边)
         android:width="integer"
         android:color="color"
         android:dashWidth="integer"
         android:dashGap="integer" />
 </shape>

Android的Shape使用

上一篇:Git断点续传和离线增量更新的实现


下一篇:最大子数组_分治法