首先,感谢大家的每一次点击,这是对我的最大的支持,我会继续努力。

情景:徒弟说用到了原型的Image控件,有两种实现方式,一种采用FrameLayout帧布局,上层遮盖,但布局繁琐。

第二种,采用自定义布局,基于ImageView,下面就直接上代码

public class RoundedImageView extends ImageView {public RoundedImageView(Context context) {super(context);// TODO Auto-generated constructor stub}public RoundedImageView(Context context, AttributeSet attrs) {super(context, attrs);}public RoundedImageView(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);}@Overrideprotected void onDraw(Canvas canvas) {Drawable drawable = getDrawable();if (drawable == null) {return;}if (getWidth() == 0 || getHeight() == 0) {return;}Bitmap b = ((BitmapDrawable) drawable).getBitmap();Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true);int w = getWidth(), h = getHeight();Bitmap roundBitmap = getCroppedBitmap(bitmap, w);canvas.drawBitmap(roundBitmap, 0, 0, null);}//生成圆角Bitmappublic static Bitmap getCroppedBitmap(Bitmap bmp, int radius) {Bitmap sbmp;if (bmp.getWidth() != radius || bmp.getHeight() != radius)sbmp = Bitmap.createScaledBitmap(bmp, radius, radius, false);elsesbmp = bmp;Bitmap output = Bitmap.createBitmap(sbmp.getWidth(), sbmp.getHeight(),Config.ARGB_8888);Canvas canvas = new Canvas(output);final int color = 0xffa19774;final Paint paint = new Paint();final Rect rect = new Rect(0, 0, sbmp.getWidth(), sbmp.getHeight());paint.setAntiAlias(true);paint.setFilterBitmap(true);paint.setDither(true);canvas.drawARGB(0, 0, 0, 0);paint.setColor(Color.parseColor("#BAB399"));canvas.drawCircle(sbmp.getWidth() / 2 + 0.7f,sbmp.getHeight() / 2 + 0.7f, sbmp.getWidth() / 2 + 0.1f, paint);paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));canvas.drawBitmap(sbmp, rect, rect, paint);return output;}}

使用:xml布局:

        <com.encount.tools.RoundedImageView <!--所在的包名.RoundedImageView-->            android:id="@+id/headImageView"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_gravity="center_horizontal"            android:layout_marginTop="25.0dip"            android:adjustViewBounds="true"            android:maxHeight="80dip"            android:maxWidth="80dip"            android:src="@drawable/user_photo" />
效果图:

鸣谢:再次感谢大家支持!

更多相关文章

  1. 【Android开发经验】兼容不同的屏幕大小(推荐,最官方的适应屏幕大
  2. Android(安卓)RecyclerView和ListView的异同
  3. Android的Multilib Build
  4. android中button实现页面跳转以及注意问题
  5. Android(安卓)ListView的多布局实现
  6. ListView加载多套布局
  7. stagefright 架构分析(四) MediaExtractor
  8. 实现Android多张图片选择
  9. Android(安卓)基本组件介绍

随机推荐

  1. Android 判断输入的年月日是否合法-正则
  2. android listview 同时监听click和longcl
  3. android 向SD卡写入数据
  4. Android NDK 安装 运行
  5. Android 限制edittext 整数和小数位数 过
  6. android sqlite查询数据表的字段与相关属
  7. 转:android笔记之contacts(通讯录)数据库
  8. Android系统去掉 USB插入调试确认框
  9. Android中的理解
  10. 利用广播实现ip拨号——示例