91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何實現圓形圖片效果

發布時間:2022-04-16 16:20:54 來源:億速云 閱讀:565 作者:iii 欄目:開發技術

本篇內容主要講解“Android中如何實現圓形圖片效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Android中如何實現圓形圖片效果”吧!

創建RoundPicture.java文件

在src/main/java/XX包下新建RoundPicture.java

Android中如何實現圓形圖片效果

Android中如何實現圓形圖片效果

寫入RoundPicture.java文件

復制下方代碼,并引入類即可

public class RoundPicture extends androidx.appcompat.widget.AppCompatImageView {
    private Paint paint;
    public RoundPicture(Context context) {
        this(context, null);
    }
    public RoundPicture(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public RoundPicture(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        paint = new Paint();
    }

//    繪制圓形圖片
    @Override
    protected void onDraw(Canvas canvas) {
        Drawable drawable = getDrawable();
        if (null != drawable) {
            Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();
            Bitmap b = getCircleBitmap(bitmap, 14);
            final Rect rectSrc = new Rect(0, 0, b.getWidth(), b.getHeight());
            final Rect rectDest = new Rect(0, 0, getWidth(), getHeight());
            paint.reset();
            canvas.drawBitmap(b, rectSrc, rectDest, paint);
        } else {
            super.onDraw(canvas);
        }
    }
//     獲取圓形圖片方法
    private Bitmap getCircleBitmap(Bitmap bitmap, int pixels) {
        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(output);
        final int color = 0xff424242;
        final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
        paint.setAntiAlias(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(color);
        int x = bitmap.getWidth();
        canvas.drawCircle(x / 2, x / 2, x / 2, paint);
        paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
        canvas.drawBitmap(bitmap, rect, rect, paint);
        return output;
    }
}

調用RoundPicture創建圓形圖片

只需在.xml文件中插入圖片處,將控件名改為
< XX.RoundPicture 并引入圖片即可

<com.example.jh_android.RoundPicture
            android:id="@+id/iv"
            android:layout_height="200dp"
            android:layout_width="200dp"
            android:layout_marginTop="150dp"
            android:layout_centerHorizontal="true"
            android:src="@drawable/head"
    />

到此,相信大家對“Android中如何實現圓形圖片效果”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

郴州市| 清苑县| 赤城县| 舞阳县| 瑞安市| 西乌珠穆沁旗| 西乌| 云安县| 长沙市| 金华市| 萨迦县| 岳阳县| 大城县| 石城县| 保亭| 南通市| 九寨沟县| 塘沽区| 岢岚县| 炎陵县| 洞口县| 从江县| 祁阳县| 临桂县| 江北区| 遂溪县| 驻马店市| 浮梁县| 嘉荫县| 孙吴县| 海淀区| 台南县| 南江县| 彭州市| 汪清县| 商洛市| 射洪县| 大丰市| 会理县| 望江县| 旬邑县|