Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您将需要创建一个自定义视图并覆盖 onDraw()。
首先,使用 canvas.drawBitmap() 来显示图像。
其次,使用 canvas.drawRect() 4 次来获取每个角落按钮。(您必须从位图中获取左、上、右、下才能获取 4 个矩形的坐标)
三、重写onTouch()截取XY触摸坐标
第四,使用 myRect.contains(x,y) 中截取的触摸坐标来确定您的矩形是否被触摸。然后你可以在它碰到矩形时完成你需要的任何动作
希望这可以帮助。