android shape的使用
然後在佈局檔案裡面的Button裡面設定如下:
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Button1"
- android:background="@drawable/buttonstyle" />
shape用於設定形狀,可以在selector,layout等裡面使用,有6個子標籤,各屬性如下:
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <!-- 圓角 -->
- <corners
- android:radius="9dp"
- android:topLeftRadius="2dp"
- android:topRightRadius="2dp"
- android:bottomLeftRadius="2dp"
- android:bottomRightRadius="2dp"/><!-- 設定圓角半徑 -->
- <!-- 漸變 -->
- <gradient
- android:startColor="@android:color/white"
- android:centerColor="@android:color/black"
- android:endColor="@android:color/black"
- android:useLevel="true"
- android:angle="45"
- android:type="radial"
- android:centerX="0"
- android:centerY="0"
- android:gradientRadius="90"/>
- <!-- 間隔 -->
- <padding
- android:left="2dp"
- android:top="2dp"
- android:right="2dp"
- android:bottom="2dp"/><!-- 各方向的間隔 -->
- <!-- 大小 -->
- <size
- android:width="50dp"
- android:height="50dp"/><!-- 寬度和高度 -->
- <!-- 填充 -->
- <solid
- android:color="@android:color/white"/><!-- 填充的顏色 -->
- <!-- 描邊 -->
- <stroke
- android:width="2dp"
- android:color="@android:color/black"
- android:dashWidth="1dp"
- android:dashGap="2dp"/>
- </shape>