Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何在MapView android上添加按钮大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
从这个问题可以看出,我需要在mapView上放置一些按钮,应用程序将通过用户按下按钮来更新当前位置的mapView.
我知道如何把按钮放在下面,但如何放在地图上?
如果有人有一些示例代码,或一些指导帮助是赞赏…

解决方法

您将需要使用RelativeLayout并将该按钮放置在MapView的顶部.只需确保不要将其放在Google徽标上.以下是一个示例 XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://scheR_98_11845@as.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
    <com.google.android.maps.MapView android:id="@+id/google_maps"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="@String/maps_key"/>
    <Button android:id="@+id/googlemaps_SELEct_LOCATIOn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:text="SELEct"/>
</RelativeLayout>

大佬总结

以上是大佬教程为你收集整理的如何在MapView android上添加按钮全部内容,希望文章能够帮你解决如何在MapView android上添加按钮所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。