问题产生原因:
1.分享布局需要圆角
2.view转Bitmap
3.保存下来发现带黑背景
解决办法:
自定义 RoundImageView
<declare-styleable name="RoundImageView">
<attr name="radius" format="dimension|reference" />
</declare-styleable>
public class RoundImageView extends BaseImageView {
private int mRadius;
public RoundImageView(Context context) {
this(context, null);
}
public RoundImageView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public RoundImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.RoundImageView);
mRadius = array.getDimensionPixelSize(R.styleable.RoundImageView_radius,
context.getResources().getDimensionPixelSize(R.dimen.dp_5));
array.recycle();
}
public Bitmap getBitmap(int width, int height) {
Bitmap bitmap = Bitmap.createBitmap(width, height,
Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(Color.BLACK);
canvas.drawRoundRect(new RectF(0.0f, 0.0f, width, height), mRadius, mRadius, paint);
return bitmap;
}
@Override
public Bitmap getBitmap() {
return getBitmap(getWidth(), getHeight());
}
public void setBorderRadius(int avatarRadius) {
mRadius = avatarRadius;
invalidate();
}
}
public abstract class BaseImageView extends androidx.appcompat.widget.AppCompatImageView {
private static final Xfermode sXfermode = new PorterDuffXfermode(PorterDuff.Mode.DST_IN);
private Bitmap mMaskBitmap;
private Paint mPaint;
private WeakReference<Bitmap> mWeakBitmap;
public BaseImageView(Context context) {
super(context);
sharedConstructor(context);
}
public BaseImageView(Context context, AttributeSet attrs) {
super(context, attrs);
sharedConstructor(context);
}
public BaseImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
sharedConstructor(context);
}
private void sharedConstructor(Context context) {
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
}
public void invalidate() {
mWeakBitmap = null;
if (mMaskBitmap != null) { mMaskBitmap.recycle(); }
super.invalidate();
}
@SuppressLint("DrawAllocation")
@Override
protected void onDraw(Canvas canvas) {
if (!isInEditMode()) {
int i = canvas.saveLayer(0.0f, 0.0f, getWidth(), getHeight(),
null, Canvas.ALL_SAVE_FLAG);
try {
Bitmap bitmap = mWeakBitmap != null ? mWeakBitmap.get() : null;
// Bitmap not loaded.
if (bitmap == null || bitmap.isRecycled()) {
Drawable drawable = getDrawable();
if (drawable != null) {
// Allocation onDraw but it's ok because it will not always be called.
bitmap = Bitmap.createBitmap(getWidth(),
getHeight(), Bitmap.Config.ARGB_8888);
Canvas bitmapCanvas = new Canvas(bitmap);
drawable.setBounds(0, 0, getWidth(), getHeight());
drawable.draw(bitmapCanvas);
// If mask is already set, skip and use cached mask.
if (mMaskBitmap == null || mMaskBitmap.isRecycled()) {
mMaskBitmap = getBitmap();
}
// Draw Bitmap.
mPaint.reset();
mPaint.setFilterBitmap(false);
mPaint.setXfermode(sXfermode);
bitmapCanvas.drawBitmap(mMaskBitmap, 0.0f, 0.0f, mPaint);
mWeakBitmap = new WeakReference<Bitmap>(bitmap);
}
}
// Bitmap already loaded.
if (bitmap != null) {
mPaint.setXfermode(null);
canvas.drawBitmap(bitmap, 0.0f, 0.0f, mPaint);
return;
}
} catch (Exception e) {
System.gc();
e.printStackTrace();
} finally {
canvas.restoreToCount(i);
}
} else {
super.onDraw(canvas);
}
}
public abstract Bitmap getBitmap();
}