使用圆角创建视图

创建绘制与名为 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 文档