解决方案:嗯,它是我的模拟器和 Eclipse 布局编辑器。在真正的手机上它工作得很好:(
问题:
用于角的 android:topLeftRadius 覆盖了 topRight、bottomRight 和 bottomLeft。
因此,虽然我希望右侧是圆形的,但左侧应该是方形的,但两边都是方形的。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#F000" />
<stroke
android:width="1px"
android:color="#BB000000" />
<padding
android:bottom="7dp"
android:left="10dp"
android:right="10dp"
android:top="7dp" />
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="0dp"
android:topRightRadius="10dp" />
<gradient
android:angle="90"
android:centerColor="#00004C"
android:endColor="#000099"
android:startColor="#000000"
android:type="linear" />
</shape>
我只是在一个按钮的 xml 中调用它。
android:background="@drawable/button_layout"