標籤:comment 檔案中 ext 顏色 version add tar height pad
1. 在res目錄下的drawable目錄下建立shape.xml檔案
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
-
- <!-- 填充的顏色 -->
- <solid android:color="#FF065E8D" />
-
- <!-- 設定按鈕的四個角為弧形 -->
- <!-- android:radius 弧形的半徑 -->
- <corners android:radius="15dip" />
-
- <!-- padding:Button裡面的文字與Button邊界的間隔 -->
- <padding
- android:bottom="10dp"
- android:left="10dp"
- android:right="10dp"
- android:top="10dp" />
- </shape>
2.在布局檔案中調用。
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <Button
- android:id="@+id/roundButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/shape"
- android:text="圓角按鈕" />
- </LinearLayout>
Android如何設定圓角按鈕