0

以下に示すように、16 以降の Android API バージョンでサポートされている単純な円形の ImageButtonを作成したいと考えています。

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

drawableフォルダー内の私のcircle_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) では、次のようになります。

ここに画像の説明を入力

これを解決する方法はありますか?ありがとう!

4

1 に答える 1

0

私の間違いを編集してください:以下のコードを試してください。私は自分のコードでそれを使用しましたが、丸い画像では完全に機能しています。

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;
    }
}
于 2016-03-31T06:00:45.180 に答える