圆形按钮不适用于 android API-16(果冻豆)

Circular Button not working on android API-16 (Jelly Bean)

我想创建一个简单的圆形ImageButton,如下所示,android API 16或更高版本支持。

<ImageButton android:layout_width="70dp"
 android:layout_height="70dp"
 android:id="@+id/myButton"
 android:background="@drawable/circular_button" />

我的 circular_button.xml 内部可绘制文件夹如下所示:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="false">
        <shape android:shape="oval">
            <solid android:color="#fa09ad"/>
        </shape>
    </item>
    <item android:state_pressed="true">
        <shape android:shape="oval">
            <solid android:color="#c20586"/>
        </shape>
    </item>
</selector>

在 android Lollipop(API 21)上一切正常,ImageButton 的外观如下:

但在较旧的 android 版本 (API 16) 上,它看起来像这样:

知道如何解决这个问题吗? 谢谢!

编辑 我的错误:请尝试下面的代码,我在自己的代码中使用了它,它非常适合圆形图像。

public class ImageHelper {
    public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int pixels) {
        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap
                .getHeight(), Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        final int color = 0xff424242;
        final Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
        final RectF rectF = new RectF(rect);
        final float roundPx = pixels;

        paint.setAntiAlias(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(color);
        canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(bitmap, rect, rect, paint);

        return output;
    }
}