位图上的 Android 按钮

发布于 2024-09-26 01:29:45 字数 572 浏览 1 评论 0原文

我是一名初学者 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羅雙樹 2024-10-03 01:29:45

使用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 a RelativeLayout are higher on the Z axis.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文