我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么在Android中利用ImageView将图片进行圆形、圆角处理

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么在Android中利用ImageView将图片进行圆形、圆角处理

本篇文章给大家分享的是有关怎么在Android中利用ImageView将图片进行圆形、圆角处理,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

基本思路是,自定义一个ImageView,通过重写onDraw方法画出一个圆形的图片来:

public class ImageViewPlus extends ImageView{  private Paint mPaintBitmap = new Paint(Paint.ANTI_ALIAS_FLAG);  private Bitmap mRawBitmap;  private BitmapShader mShader;  private Matrix mMatrix = new Matrix();    public ImageViewPlus(Context context, AttributeSet attrs) {    super(context, attrs);  }    @Override  protected void onDraw(Canvas canvas) {    Bitmap rawBitmap = getBitmap(getDrawable());    if (rawBitmap != null){      int viewWidth = getWidth();      int viewHeight = getHeight();      int viewMinSize = Math.min(viewWidth, viewHeight);      float dstWidth = viewMinSize;      float dstHeight = viewMinSize;      if (mShader == null || !rawBitmap.equals(mRawBitmap)){        mRawBitmap = rawBitmap;        mShader = new BitmapShader(mRawBitmap, TileMode.CLAMP, TileMode.CLAMP);      }      if (mShader != null){        mMatrix.setScale(dstWidth / rawBitmap.getWidth(), dstHeight / rawBitmap.getHeight());        mShader.setLocalMatrix(mMatrix);      }      mPaintBitmap.setShader(mShader);      float radius = viewMinSize / 2.0f;      canvas.drawCircle(radius, radius, radius, mPaintBitmap);    } else {      super.onDraw(canvas);    }  }  private Bitmap getBitmap(Drawable drawable){    if (drawable instanceof BitmapDrawable){      return ((BitmapDrawable)drawable).getBitmap();    } else if (drawable instanceof ColorDrawable){      Rect rect = drawable.getBounds();      int width = rect.right - rect.left;      int height = rect.bottom - rect.top;      int color = ((ColorDrawable)drawable).getColor();      Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);      Canvas canvas = new Canvas(bitmap);      canvas.drawARGB(Color.alpha(color), Color.red(color), Color.green(color), Color.blue(color));      return bitmap;    } else {      return null;    }  }}

分析一下代码:

 canvas.drawCircle 决定了画出来的形状是圆形,而圆形的内容则是通过 mPaintBitmap.setShader 搞定的。

其中,BitmapShader需要设置Bitmap填充ImageView的方式(CLAMP:拉伸边缘, MIRROR:镜像, REPEAT:整图重复)。

这里其实设成什么不重要,因为我们实际需要的是将Bitmap按比例缩放成跟ImageView一样大,而不是预置的三种效果。

所以,别忘了 mMatrix.setScale 和 mShader.setLocalMatrix 一起用,将图片缩放一下。

四、支持边框

public class ImageViewPlus extends ImageView{  private Paint mPaintBitmap = new Paint(Paint.ANTI_ALIAS_FLAG);  private Paint mPaintBorder = new Paint(Paint.ANTI_ALIAS_FLAG);  private Bitmap mRawBitmap;  private BitmapShader mShader;  private Matrix mMatrix = new Matrix();  private float mBorderWidth = dip2px(15);  private int mBorderColor = 0xFF0080FF;    public ImageViewPlus(Context context, AttributeSet attrs) {    super(context, attrs);  }    @Override  protected void onDraw(Canvas canvas) {    Bitmap rawBitmap = getBitmap(getDrawable());    if (rawBitmap != null){      int viewWidth = getWidth();      int viewHeight = getHeight();      int viewMinSize = Math.min(viewWidth, viewHeight);      float dstWidth = viewMinSize;      float dstHeight = viewMinSize;      if (mShader == null || !rawBitmap.equals(mRawBitmap)){        mRawBitmap = rawBitmap;        mShader = new BitmapShader(mRawBitmap, TileMode.CLAMP, TileMode.CLAMP);      }      if (mShader != null){        mMatrix.setScale((dstWidth - mBorderWidth * 2) / rawBitmap.getWidth(), (dstHeight - mBorderWidth * 2) / rawBitmap.getHeight());        mShader.setLocalMatrix(mMatrix);      }      mPaintBitmap.setShader(mShader);      mPaintBorder.setStyle(Paint.Style.STROKE);      mPaintBorder.setStrokeWidth(mBorderWidth);      mPaintBorder.setColor(mBorderColor);      float radius = viewMinSize / 2.0f;      canvas.drawCircle(radius, radius, radius - mBorderWidth / 2.0f, mPaintBorder);      canvas.translate(mBorderWidth, mBorderWidth);      canvas.drawCircle(radius - mBorderWidth, radius - mBorderWidth, radius - mBorderWidth, mPaintBitmap);    } else {      super.onDraw(canvas);    }  }  private Bitmap getBitmap(Drawable drawable){    if (drawable instanceof BitmapDrawable){      return ((BitmapDrawable)drawable).getBitmap();    } else if (drawable instanceof ColorDrawable){      Rect rect = drawable.getBounds();      int width = rect.right - rect.left;      int height = rect.bottom - rect.top;      int color = ((ColorDrawable)drawable).getColor();      Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);      Canvas canvas = new Canvas(bitmap);      canvas.drawARGB(Color.alpha(color), Color.red(color), Color.green(color), Color.blue(color));      return bitmap;    } else {      return null;    }  }    private int dip2px(int dipVal)  {    float scale = getResources().getDisplayMetrics().density;    return (int)(dipVal * scale + 0.5f);  }}

看代码中,加边框实际上就是用实心纯色的 Paint 画了一个圆边,在此基础上画上原来的头像即可。

需要的注意的地方有三个:

1)、圆框的半径不是 radius ,而应该是 radius - mBorderWidth / 2.0f 。想象着拿着笔去画线,线其实是画在右图中白色圈的位置,只不过它很粗。

2)、在ImageView大小不变的基础上,头像的实际大小要比没有边框的时候小了,所以 mMatrix.setScale 的时候要把边框的宽度去掉。

3)、画头像Bitmap的时候不能直接 canvas.drawCircle(radius, radius, radius - mBorderWidth, mPaintBitmap) ,这样你会发现头像的右侧和下方边缘被拉伸了(右图)

为什么呢?因为 Paint 默认是以左上角为基准开始绘制的,此时头像的实际区域是右图中的红框,而超过红框的部分(圆形的右侧和下方),自然被 TileMode.CLAMP效果沿边缘拉伸了。

所以,需要通过挪动坐标系的位置和调整圆心,才能把头像画在正确的区域(右图绿框)中。

五、更多玩法 —— 支持xml配置

既然有了边框,那如果想配置边框的宽度和颜色该如何是好呢?

基本上两个思路:

1)、给ImageViewPlus加上set接口,设置完成之后通过 invalidate(); 重绘一下即可;

2)、在xml里就支持配置一些自定义属性,这样用起来会方便很多。

这里重点说一下支持xml配置自定义属性。

自定义控件要支持xml配置自定义属性的话,首先需要在 \res\values 里去定义属性:

<?xml version="1.0" encoding="utf-8"?> <resources>   <attr name="borderColor" format="color" />  <attr name="borderWidth" format="dimension" />  <declare-styleable name="ImageViewPlus">     <attr name="borderColor" />    <attr name="borderWidth" />  </declare-styleable> </resources>

 然后在ImageViewPlus的构造函数中去读取这些自定义属性:

private static final int DEFAULT_BORDER_COLOR = Color.TRANSPARENT;  private static final int DEFAULT_BORDER_WIDTH = 0;    public ImageViewPlus(Context context, AttributeSet attrs) {    super(context, attrs);    //取xml文件中设定的参数    TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.ImageViewPlus);    mBorderColor = ta.getColor(R.styleable.ImageViewPlus_borderColor, DEFAULT_BORDER_COLOR);    mBorderWidth = ta.getDimensionPixelSize(R.styleable.ImageViewPlus_borderWidth, dip2px(DEFAULT_BORDER_WIDTH));    ta.recycle();  }

 在xml布局中使用自定义属性:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  xmlns:snser="http://schemas.android.com/apk/res/cc.snser.imageviewplus"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:background="@drawable/wallpaper"  android:orientation="vertical"  tools:context="${relativePackage}.${activityClass}" >    <cc.snser.imageviewplus.ImageViewPlus    android:id="@+id/imgplus"    android:layout_width="200dp"    android:layout_height="300dp"    android:layout_marginBottom="50dp"    android:layout_centerHorizontal="true"    android:layout_alignParentBottom="true"    android:class="lazy" data-src="@drawable/img_square"    snser:borderColor="#FF0080FF"    snser:borderWidth="15dp" />  </RelativeLayout>

六、 圆角ImageView

其实原理上一样,把 canvas.drawCircle 对应改成 canvas.drawRoundRect 就OK了,直接贴代码吧:

public class ImageViewPlus extends ImageView{    public static final int TYPE_NONE = 0;    public static final int TYPE_CIRCLE = 1;    public static final int TYPE_ROUNDED_RECT = 2;      private static final int DEFAULT_TYPE = TYPE_NONE;  private static final int DEFAULT_BORDER_COLOR = Color.TRANSPARENT;  private static final int DEFAULT_BORDER_WIDTH = 0;  private static final int DEFAULT_RECT_ROUND_RADIUS = 0;    private int mType;  private int mBorderColor;  private int mBorderWidth;  private int mRectRoundRadius;    private Paint mPaintBitmap = new Paint(Paint.ANTI_ALIAS_FLAG);  private Paint mPaintBorder = new Paint(Paint.ANTI_ALIAS_FLAG);    private RectF mRectBorder = new RectF();  private RectF mRectBitmap = new RectF();    private Bitmap mRawBitmap;  private BitmapShader mShader;  private Matrix mMatrix = new Matrix();    public ImageViewPlus(Context context, AttributeSet attrs) {    super(context, attrs);    //取xml文件中设定的参数    TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.ImageViewPlus);    mType = ta.getInt(R.styleable.ImageViewPlus_type, DEFAULT_TYPE);    mBorderColor = ta.getColor(R.styleable.ImageViewPlus_borderColor, DEFAULT_BORDER_COLOR);    mBorderWidth = ta.getDimensionPixelSize(R.styleable.ImageViewPlus_borderWidth, dip2px(DEFAULT_BORDER_WIDTH));    mRectRoundRadius = ta.getDimensionPixelSize(R.styleable.ImageViewPlus_rectRoundRadius, dip2px(DEFAULT_RECT_ROUND_RADIUS));    ta.recycle();  }    @Override  protected void onDraw(Canvas canvas) {    Bitmap rawBitmap = getBitmap(getDrawable());        if (rawBitmap != null && mType != TYPE_NONE){      int viewWidth = getWidth();      int viewHeight = getHeight();      int viewMinSize = Math.min(viewWidth, viewHeight);      float dstWidth = mType == TYPE_CIRCLE ? viewMinSize : viewWidth;      float dstHeight = mType == TYPE_CIRCLE ? viewMinSize : viewHeight;      float halfBorderWidth = mBorderWidth / 2.0f;      float doubleBorderWidth = mBorderWidth * 2;            if (mShader == null || !rawBitmap.equals(mRawBitmap)){        mRawBitmap = rawBitmap;        mShader = new BitmapShader(mRawBitmap, TileMode.CLAMP, TileMode.CLAMP);      }      if (mShader != null){        mMatrix.setScale((dstWidth - doubleBorderWidth) / rawBitmap.getWidth(), (dstHeight - doubleBorderWidth) / rawBitmap.getHeight());        mShader.setLocalMatrix(mMatrix);      }            mPaintBitmap.setShader(mShader);      mPaintBorder.setStyle(Paint.Style.STROKE);      mPaintBorder.setStrokeWidth(mBorderWidth);      mPaintBorder.setColor(mBorderWidth > 0 ? mBorderColor : Color.TRANSPARENT);            if (mType == TYPE_CIRCLE){        float radius = viewMinSize / 2.0f;        canvas.drawCircle(radius, radius, radius - halfBorderWidth, mPaintBorder);        canvas.translate(mBorderWidth, mBorderWidth);        canvas.drawCircle(radius - mBorderWidth, radius - mBorderWidth, radius - mBorderWidth, mPaintBitmap);      } else if (mType == TYPE_ROUNDED_RECT){        mRectBorder.set(halfBorderWidth, halfBorderWidth, dstWidth - halfBorderWidth, dstHeight - halfBorderWidth);        mRectBitmap.set(0.0f, 0.0f, dstWidth - doubleBorderWidth, dstHeight - doubleBorderWidth);        float borderRadius = mRectRoundRadius - halfBorderWidth > 0.0f ? mRectRoundRadius - halfBorderWidth : 0.0f;        float bitmapRadius = mRectRoundRadius - mBorderWidth > 0.0f ? mRectRoundRadius - mBorderWidth : 0.0f;        canvas.drawRoundRect(mRectBorder, borderRadius, borderRadius, mPaintBorder);        canvas.translate(mBorderWidth, mBorderWidth);        canvas.drawRoundRect(mRectBitmap, bitmapRadius, bitmapRadius, mPaintBitmap);      }    } else {      super.onDraw(canvas);    }  }  private int dip2px(int dipVal)  {    float scale = getResources().getDisplayMetrics().density;    return (int)(dipVal * scale + 0.5f);  }    private Bitmap getBitmap(Drawable drawable){    if (drawable instanceof BitmapDrawable){      return ((BitmapDrawable)drawable).getBitmap();    } else if (drawable instanceof ColorDrawable){      Rect rect = drawable.getBounds();      int width = rect.right - rect.left;      int height = rect.bottom - rect.top;      int color = ((ColorDrawable)drawable).getColor();      Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);      Canvas canvas = new Canvas(bitmap);      canvas.drawARGB(Color.alpha(color), Color.red(color), Color.green(color), Color.blue(color));      return bitmap;    } else {      return null;    }  }}
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  xmlns:snser="http://schemas.android.com/apk/res/cc.snser.imageviewplus"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:background="@drawable/wallpaper"  android:orientation="vertical"  tools:context="${relativePackage}.${activityClass}" >    <cc.snser.imageviewplus.ImageViewPlus    android:id="@+id/imgplus"    android:layout_width="200dp"    android:layout_height="300dp"    android:layout_marginBottom="50dp"    android:layout_centerHorizontal="true"    android:layout_alignParentBottom="true"    android:class="lazy" data-src="@drawable/img_rectangle"    snser:type="rounded_rect"    snser:borderColor="#FF0080FF"    snser:borderWidth="10dp"    snser:rectRoundRadius="30dp" />  </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <resources>   <attr name="type">     <enum name="none" value="0" />     <enum name="circle" value="1" />     <enum name="rounded_rect" value="2" />  </attr>  <attr name="borderColor" format="color" />  <attr name="borderWidth" format="dimension" />  <attr name="rectRoundRadius" format="dimension" />  <declare-styleable name="ImageViewPlus">     <attr name="type" />    <attr name="borderColor" />    <attr name="borderWidth" />    <attr name="rectRoundRadius" />  </declare-styleable></resources>

以上就是怎么在Android中利用ImageView将图片进行圆形、圆角处理,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么在Android中利用ImageView将图片进行圆形、圆角处理

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么在Android中利用ImageView将图片进行圆形、圆角处理

本篇文章给大家分享的是有关怎么在Android中利用ImageView将图片进行圆形、圆角处理,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。基本思路是,自定义一个ImageVi
2023-05-31

Android中怎么对图片进行圆角处理

本篇文章给大家分享的是有关Android中怎么对图片进行圆角处理,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。方法一:setXfermode法此种方式就是再new一个相同尺寸的
2023-05-31

Android应用中在对头像进行圆形处理

本篇文章给大家分享的是有关Android应用中在对头像进行圆形处理,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Glide实现圆形图像Glide.with(mContext)
2023-05-31

怎么在Android中利用ImageView控件实现一个圆角功能

今天就跟大家聊聊有关怎么在Android中利用ImageView控件实现一个圆角功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。1.创建CustomImageView 类在你的项目
2023-05-31

如何在Android中利用ImageView.src对图片进行拉伸处理

如何在Android中利用ImageView.src对图片进行拉伸处理?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。方法如下:
2023-05-31

怎么在Android应用中利用Bitmap对图片进行优化

这篇文章给大家介绍怎么在Android应用中利用Bitmap对图片进行优化,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。前言在Android开发过程中,Bitmap往往会给开发者带来一些困扰,因为对Bitmap操作不慎
2023-05-31

怎么在Android中利用videoview对抢占的焦点进行处理

这篇文章给大家介绍怎么在Android中利用videoview对抢占的焦点进行处理,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。问题描述:android 机顶盒应用:应用程序主界面(MainActivity)只有两个控
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录