Android:地图一角的按钮

发布于 2024-12-08 14:24:02 字数 136 浏览 0 评论 0原文

我想在我的 Android 地图右上角创建一个按钮(必须一直留在那里,即使我在地图中移动)。点击时,地图应进入卫星视图,再次点击时,地图应返回街景。

我有街景和地图视图的代码,我只想知道如何创建一个始终位于右上角的按钮。

谢谢

I wanted to create a button in my Android maps at the top right corner(has to stay there all the time, even if I move in the map). when tapped the map should go to satellite view, when tapped again it should come back to street view.

I have the code for street view and map view, I just want to know how to create a button that stays always at the top right corner.

Thanks

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

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

发布评论

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

评论(1

花落人断肠 2024-12-15 14:24:02
<RelativeLayout>
<Button
   android:layout_alignParentRight="true"
   android:layout_alignParentTop="true"
/>
// place your other map or street view here.

</RelativeLayout>

使用这个布局。

<RelativeLayout>
<Button
   android:layout_alignParentRight="true"
   android:layout_alignParentTop="true"
/>
// place your other map or street view here.

</RelativeLayout>

use this layout.

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