次の画像を見ると、左側のボタンが android 2.1、右側のボタンが 2.2 です。
左の画像の角が正しく適用されていないことがわかりますが、2.2 では完璧に見えます。私が使用しているxmlはここにあります:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="0dip" android:left="0dip" android:bottom="0dip"
android:top="0dip">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:bottomRightRadius="3dip"
android:bottomLeftRadius="3dip" android:topLeftRadius="3dip"
android:topRightRadius="3dip" />
<stroke android:width="1dip" android:color="#70532B" />
<padding android:left="1dip" android:top="1dip"
android:right="1dip" android:bottom="1dip" />
</shape>
</item>
<item android:right="0dip" android:left="0dip" android:bottom="0dip"
android:top="9dip">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#ECAF08" android:endColor="#F6E34B"
android:angle="270" />
<corners android:bottomRightRadius="3dip"
android:bottomLeftRadius="3dip" android:topLeftRadius="0dip"
android:topRightRadius="0dip" />
</shape>
</item>
<item android:right="0dip" android:left="0dip" android:bottom="11dip"
android:top="0dip">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#FCEF94" android:endColor="#FFBA00"
android:angle="270" />
<corners android:bottomRightRadius="0dip"
android:bottomLeftRadius="0dip" android:topLeftRadius="3dip"
android:topRightRadius="3dip" />
</shape>
</item>
私は何か間違ったことをしていますか、それともこれはAndroid 2.1のバグですか???