国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Andorid開發之Picasso通過URL獲取用戶頭像的圓形顯示

2019-10-22 18:33:36
字體:
來源:轉載
供稿:網友

1.設置布局屬性:

<ImageView android:scaleType="fitXY"/>

2.BitmapUtils類-- 得到指定圓形的Bitmap對象

public static Bitmap circleBitmap(Bitmap source) { //獲取Bitmap的寬度 int width = source.getWidth(); //以Bitmap的寬度值作為新的bitmap的寬高值。 Bitmap bitmap = Bitmap.createBitmap(width, width, Bitmap.Config.ARGB_8888); //以此bitmap為基準,創建一個畫布 Canvas canvas = new Canvas(bitmap); Paint paint = new Paint(); paint.setAntiAlias(true); //在畫布上畫一個圓 canvas.drawCircle(width / 2, width / 2, width / 2, paint); //設置圖片相交情況下的處理方式 //setXfermode:設置當繪制的圖像出現相交情況時候的處理方式的,它包含的常用模式有: //PorterDuff.Mode.SRC_IN 取兩層圖像交集部分,只顯示上層圖像 //PorterDuff.Mode.DST_IN 取兩層圖像交集部分,只顯示下層圖像 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); //在畫布上繪制bitmap canvas.drawBitmap(source, 0, 0, paint); return bitmap;}

3.BitmapUtils類--壓縮圖片

//實現圖片的壓縮處理//設置寬高必須使用浮點型,否則導致壓縮的比例:0public static Bitmap zoom(Bitmap source,float width ,float height){ Matrix matrix = new Matrix(); //圖片的壓縮處理 matrix.postScale(width / source.getWidth(),height / source.getHeight()); Bitmap bitmap = Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix, false); return bitmap;}

4.根據user.getImageurl()顯示圓形圖像

//使用Picasso聯網獲取圖片Picasso.with(this.getActivity()).load(user.getImageurl()).transform(new Transformation() { @Override public Bitmap transform(Bitmap source) {//下載以后的內存中的bitmap對象  //壓縮處理  Bitmap bitmap = BitmapUtils.zoom(source, UIUtils.dp2px(62),UIUtils.dp2px(62));  //圓形處理  bitmap = BitmapUtils.circleBitmap(bitmap);  //回收bitmap資源  source.recycle();  return bitmap; } @Override public String key() {  return "";//需要保證返回值不能為null。否則報錯 }}).into(ivMeIcon);

以上所述是小編給大家介紹的Andorid開發之Picasso通過URL獲取用戶頭像的圓形顯示,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 茶陵县| 定襄县| 西昌市| 禄丰县| 茂名市| 宜兰市| 柘城县| 马边| 如皋市| 云霄县| 定南县| 凤阳县| 贡山| 巍山| 灵川县| 密云县| 武功县| 通许县| 泽州县| 四平市| 乐安县| 治县。| 临邑县| 兰考县| 沁阳市| 宁津县| 泌阳县| 乌拉特前旗| 沈丘县| 额尔古纳市| 北票市| 阳朔县| 恭城| 勐海县| 阿瓦提县| 青神县| 腾冲县| 宝坻区| 南陵县| 乌拉特后旗| 乌拉特后旗|