Android 相机布局

发布于 2024-11-25 11:52:51 字数 687 浏览 0 评论 0 原文

我的相机布局使用以下 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/preview" 
android:layout_width="match_parent"
android:layout_height="match_parent" >

        <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/buttonClick"
        android:text="Click" android:layout_gravity="right|bottom" />

</FrameLayout>

当用户单击屏幕时,它将捕获图像。

现在我想做的是在同一视图中使用另一个按钮来启动我的图像查看器,如何做到这一点?我想要这样的东西(右下角的图像查看器按钮):

在此处输入图像描述

非常感谢您的帮助! :)

I'm using the following xml code for my camera layout:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/preview" 
android:layout_width="match_parent"
android:layout_height="match_parent" >

        <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/buttonClick"
        android:text="Click" android:layout_gravity="right|bottom" />

</FrameLayout>

When the user clicks the screen it will capture the image.

Now what I want to do is to have another button in the same view to launch my image viewer, how to do this? I want something like this (image viewer button on the lower right corner):

enter image description here

Many thanks for any help! :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

森林散布 2024-12-02 11:52:51

您可以创建一个按钮并设置 android:layout_gravity="right|bottom"

You can create a button and set android:layout_gravity="right|bottom"

凉月流沐 2024-12-02 11:52:51

您需要创建一个具有自定义背景的按钮。在单击方法上,您需要实现这样的新意图。

startActivity(new Intent("[这里是你的 imageViewer 的包名称]");

希望有帮助。

You need to create a button with a custom background. On the click method you need to implement a new intent like this.

startActivity(new Intent("[here is your imageViewer's package name]");

Hope it helps.

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