使用圓角建立檢視

建立繪製與名為 custom_rectangle.xml繪製資料夾:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <solid android:color="@android:color/white" />

    <corners android:radius="10dip" />

    <stroke
        android:width="1dp"
        android:color="@android:color/white" />

</shape>

現在在檢視上應用矩形背景 : ****

mView.setBackGround(R.drawlable.custom_rectangle);

參考截圖:

StackOverflow 文件