Android 相机布局
我的相机布局使用以下 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>
当用户单击屏幕时,它将捕获图像。
现在我想做的是在同一视图中使用另一个按钮来启动我的图像查看器,如何做到这一点?我想要这样的东西(右下角的图像查看器按钮):
非常感谢您的帮助! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个按钮并设置 android:layout_gravity="right|bottom"
You can create a button and set android:layout_gravity="right|bottom"
您需要创建一个具有自定义背景的按钮。在单击方法上,您需要实现这样的新意图。
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.