設置邊框圓角能夠在drawable-mdpi目錄裏定義一個xml: android
<?xml version="1.0" encoding="utf-8"?> ide
<shape xmlns:android="http://schemas.android.com/apk/res/android"> spa
<solid android:color="#000000" /> orm
<corners android:topLeftRadius="10dp" xml
android:topRightRadius="10dp" ip
android:bottomRightRadius="10dp" utf-8
android:bottomLeftRadius="10dp"/> string
</shape> it
解釋:solid的表示填充顏色,爲了簡單,這裏用的是黑色。
而corners則是表示圓角,注意的是這裏bottomRightRadius是左下角而不是右下角,bottomLeftRadius右下角。
固然上面的效果也能夠像下面同樣設置,以下: io
<corners android:radius="5dp" />
若是想引用這個xml,只須要@drawable/corners_bg.xml便可:
android:background="@drawable/corners_bg"
main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#FFFFFF">
<RelativeLayout android:id="@+id/login_div"
android:layout_width="fill_parent" android:layout_height="150dip"
android:padding="15dip" android:layout_margin="15dip"
android:background="@drawable/corners_bg">
</RelativeLayout>
</LinearLayout>
運行結果: