如圖所示,在線等。
1/在drawable下創建round__background.xm:
2/round_background.xml下的代碼:
<?xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:color="@color/colorAccent">
android:radius="60dip"
/>
android:width="0dp"
android:color="@color/colorAccent" />
android:color="@color/colorAccent" />
3/在你的布局文件中引用"android:background = "@drawable/round_background""
4/第二種方法:在round _ background.xml文件中代碼:
<?xml version="1.0" encoding="utf-8"?>
android:shape="rectangle">
android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"
android:topRightRadius="30dp"
android:topLeftRadius="30dp"
/>
在布局文件中:"android:background = "@drawable/round_background" 可以了,至於顏色可以自己設置在其中