作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 RoundedBitmapDrawable
覆盖我的 CustomImageView onDraw
方法在 Android 上创建一个 CircleImageView,但我永远无法显示图像。
我的代码:
@Override
protected 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);
RoundedBitmapDrawable bmp = getCroppedBitmap(bitmap);
bmp.setAntiAlias(true);
bmp.setDither(true);
bmp.setCornerRadius(Math.min(drawable.getMinimumWidth(),drawable.getMinimumHeight()));
bmp.draw(canvas);
}
private RoundedBitmapDrawable getCroppedBitmap(Bitmap bitmapimg) {
return RoundedBitmapDrawableFactory.create(getResources(),bitmapimg);
}
我做错了什么,我应该如何让它发挥作用?
谢谢
最佳答案
其实我忘记了一个简单的事情:
bmp.setBounds(new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()));
感谢您的帮助!
关于android - 用 RoundedBitmapDrawable 覆盖 onDraw,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27683467/
我正在尝试使用支持库 v4 的 RoundedBitmapDrawable 来显示在 ImageView 中异步加载的圆形位图,无论是圆形还是圆角矩形。 但是,看起来 RoundedBitmapDra
我正在尝试使用 RoundedBitmapDrawable 覆盖我的 CustomImageView onDraw 方法在 Android 上创建一个 CircleImageView,但我永远无法显示
在开始使用 RoundedBitmapDrawable 来圆化 Bitmap 的角之前一切正常。 开始使用 RoundedBitmapDrawable 后,我得到: java.lang.ClassCa
我看过 Udacity 关于 Material Design 的讲座,其中提到了 RoundedBitmapDrawable 的用法。实现循环 View 。但是我在让它与 Picasso 一起工作时遇
我是一名优秀的程序员,十分优秀!