如何制作完美的圆角?我已经尝试了所有的东西,但它并没有像我预期的那样出现。请帮帮我。以下是我的代码。通过使用该代码,我得到下面的图像。
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/first_ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/tab_background_five">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:src="@drawable/settingshover" />
</FrameLayout>
</FrameLayout>
tab_background_five.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/tab_bg_five" android:state_selected="true" />
<item android:drawable="@drawable/tab_bg_five_white" android:state_selected="false" />
tab_bg_five.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#CF5548" />
<corners
android:radius="3dp"
android:bottomRightRadius="30dp"
android:topRightRadius="30dp" />