如何在 MapView 上显示 TextView、按钮(重叠在其上)..?

发布于 2024-10-20 15:16:45 字数 340 浏览 1 评论 0原文

在我的应用程序中,我有地图视图,我想在文本视图和按钮中显示距离,

我已经这样做了。并尝试了这个.. http://www.anddev.org/post3452.html#p3452

问题是>> ;>>

我想在地图视图上显示文本视图和按钮.. 所以我可以全屏查看 MAPVIEW.. 上面有其他项目(因为我们可以通过 textview 查看地图)..

需要在 xml 文件中完成任何规范..?

请..回复我.. 先感谢您

In my application i have mapview and I want to show distance in a textview and also a Button ,

I have done this.and tried this..
http://www.anddev.org/post3452.html#p3452

PROBLEM IS>>>>

I WANT TO SHOW TEXTVIEW AND BUTTON OVER THE MAP VIEW..
so I can See MAPVIEW in Full Screen..with other items over it(as we can see map through textview)..

Any SPECIFICATION NEEDED TO BE DONE IN xml FILE..??

Please..Reply me..
Thank You..in advance

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

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

发布评论

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

评论(2

蓝眼睛不忧郁 2024-10-27 15:16:45

是的,你可以这样做。

例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

    <com.google.android.maps.MapView
        android:id="@+id/mapView" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:enabled="true"
        android:layout_centerInParent="true" android:clickable="true"
        android:apiKey="your api key" />

    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="Click"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true" android:id="@+id/clickBtn" />

</RelativeLayout>

Yes you can do that.

For eg:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

    <com.google.android.maps.MapView
        android:id="@+id/mapView" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:enabled="true"
        android:layout_centerInParent="true" android:clickable="true"
        android:apiKey="your api key" />

    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="Click"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true" android:id="@+id/clickBtn" />

</RelativeLayout>
已下线请稍等 2024-10-27 15:16:45

使用RelativeLayout 创建布局并将地图视图嵌入其中。设置后,根据需要设置组件的相对位置。

create a layout with the RelativeLayout and embed the map view in it. Once set, set the relative position of your components as per your need.

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