我正在尝试使用背景图像和前景图像模拟TorchView。它可以在API 27及以下版本上很好地工作,但可以在API 28上绘制一个矩形。
您知道为什么它不能在Android Pie上运行吗?
火炬视图类
class TorchView : View, OnTouchListener { var mBitmapBackground: Bitmap? = null var mBitmapForeground: Bitmap? = null var mMask: Bitmap? = null private var mPosX = 0f private var mPosY = 0f private lateinit var paintMask: Paint private lateinit var paintBackground: Paint private lateinit var paintForeground: Paint private var radius = 150 constructor(context: Context) : super(context) { init() } constructor(context: Context, attrs: AttributeSet) : super(context, attrs) { init() } fun initBitmaps(bitmapBackground: Bitmap, bitmapForeground: Bitmap, radius: Int){ this.radius = radius mBitmapBackground = bitmapBackground mBitmapForeground = bitmapForeground mMask = makeRadGrad() mPosX = (bitmapBackground.width/2 - radius).toFloat() mPosY = (bitmapBackground.height/2 - radius).toFloat() invalidate() } fun init() { paintBackground = Paint() paintMask = Paint() paintMask.xfermode = PorterDuffXfermode(PorterDuff.Mode.CLEAR) paintForeground = Paint() paintForeground.xfermode = PorterDuffXfermode(PorterDuff.Mode.DST_OVER) isFocusable = true isFocusableInTouchMode = true this.setOnTouchListener(this) } public override fun onDraw(canvas: Canvas) { super.onDraw(canvas) val mask = mMask val bitmapForeground = mBitmapBackground val bitmapBackground = mBitmapForeground if(mask != null && bitmapForeground != null && bitmapBackground != null){ canvas.save() canvas.drawBitmap(bitmapBackground, 0f, 0f, paintBackground) canvas.drawBitmap(mask, mPosX, mPosY, paintMask) canvas.drawBitmap(bitmapForeground, 0f, 0f, paintForeground) canvas.restore() } } private fun makeRadGrad(): Bitmap { val gradient = RadialGradient( radius.toFloat(), radius.toFloat(), radius.toFloat(), -0xff0100, 0x00000000, android.graphics.Shader.TileMode.CLAMP ) val p = Paint() p.isDither = true p.shader = gradient val bitmap = Bitmap.createBitmap(radius*2, radius*2, Config.ARGB_8888) val c = Canvas(bitmap) c.drawCircle(radius.toFloat(), radius.toFloat(), radius.toFloat(), p) return bitmap } override fun onTouch(v: View?, event: MotionEvent): Boolean { mPosX = event.x - radius mPosY = event.y - radius invalidate() return true } }
答案 0 :(得分:1)
答案 1 :(得分:1)
选中此IamNN: Iterative and Adaptive Mobile Neural Network for efficient image classification
尝试
public override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
val mask = mMask
val bitmapForeground = mBitmapBackground
val bitmapBackground = mBitmapForeground
if(mask != null && bitmapForeground != null && bitmapBackground != null){
canvas.save()
canvas.drawBitmap(bitmapBackground, 0f, 0f, paintBackground)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
makeRadGradP(canvas, bitmapForeground)
} else {
canvas.drawBitmap(mask, mPosX, mPosY, paintMask)
canvas.drawBitmap(bitmapForeground, 0f, 0f, paintForeground)
}
canvas.restore()
}
}
private fun makeRadGradP(canvas: Canvas, bm: Bitmap) {
val paint = Paint()
paint.style = Paint.Style.FILL
val shader = BitmapShader(bm, TileMode.CLAMP, TileMode.CLAMP)
paint.shader = shader
val corners = Path()
corners.addCircle(mPosX + radius, mPosY + radius, radius.toFloat(), Path.Direction.CW)
canvas.drawPath(corners, paint)
val gradient = RadialGradient(
mPosX + radius, mPosY + radius, radius.toFloat(), 0x00000000,
Color.parseColor("#df000000"), TileMode.CLAMP
)
val p = Paint()
p.isDither = true
p.shader = gradient
canvas.drawCircle(mPosX + radius, mPosY + radius, radius.toFloat(), p)
}