我想在形状 xml 文件中获得带有背景颜色的圆角。但它不适用于角落。这是代码的输出
这是代码
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle" >
<solid android:color="#aaffffff" />
</shape>
</item>
<item>
<shape>
<corners
android:radius="11dp" >
</corners>
</shape>
</item>
</layer-list>
快速帮助将不胜感激。提前致谢 !