位图上的 Android 按钮
我是一名初学者 Android 开发人员,我试图在我输出的位图上显示一个按钮。
这是我所拥有的:
我的活动设置了这个:
setContentView(new FrameView(this));
FrameView 是一个扩展 View 的类:
public FrameView(Context context) {
super(context);
setFocusable(false);
在 FrameView 内部我有
@Override protected void onDraw(Canvas canvas){
...
canvas.drawBitmap(image1.getBitmap(), 0, 0, null);
...
}
main.xml 是 FrameLayout ,我在上面贴了一个按钮,就是这样。
我想我的问题是,如何将某些内容作为“画布”插入到 main.xml 中,以便将我的位图粘贴到其中,但无论我绘制多少个位图,按钮仍然始终位于顶部?
I am a beginner android developer and I am trying to have a button display on top of the bitmaps I am outputting.
Here is what I have:
my activity sets this:
setContentView(new FrameView(this));
FrameView is a class that extends View:
public FrameView(Context context) {
super(context);
setFocusable(false);
Inside FrameView I have
@Override protected void onDraw(Canvas canvas){
...
canvas.drawBitmap(image1.getBitmap(), 0, 0, null);
...
}
main.xml is FrameLayout that I stuck a button on top of, that's it.
I guess my question is, how do I insert something into the main.xml as a "canvas" in order to paste my bitmaps to, but still have the button always on top regardless of how many bitmaps i draw?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
RelativeLayout
。将您的“画布”作为第一个子项,根据您认为合适的尺寸和位置进行调整。将您的按钮作为第二个子按钮,按您认为合适的尺寸和位置放置。您的按钮将“浮动”在您的“画布”上,因为RelativeLayout
的后续子级在 Z 轴上更高。Use a
RelativeLayout
. Put your "canvas" as the first child, sized and positioned as you see fit. Put your button as the second child, sized and positioned as you see fit. Your button will "float" over your "canvas", because later children of aRelativeLayout
are higher on the Z axis.