Google地图在Fragment中使用

本文介绍了如何在Android的Fragment中使用Google地图。首先需要添加Google服务器库,然后对比了在Activity和Fragment中使用Google Map的差异。在Activity中,只需在布局文件中添加MapFragment并实现Callback方法。而在Fragment中,需将GoogleMap控件导入布局,并关注其生命周期,确保在Fragment的生命周期方法中正确管理map。
摘要由CSDN通过智能技术生成

因为GoogleMap在官方的Demo的使用是在Actvity中使用,现在想在Fragment中使用方法就是不一样的。

1.首先要添加googleserver的lib。
下面是Google Map的两种实现方式
显示使用Activity的形式呈现Google Map

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
 >
<fragment 
    android:name="com.google.android.gms.maps.MapFragment"
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="#ffffff"
    >
    <TextView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="14sp"
        android:layout_marginLeft="11dp"
        android:layout_marginTop="13dp"
        android:textColor="#5e5d5d"
        android:text="@string/site_map_title"
        />
    <TextView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="#5e5d5d"
        android:layout_marginTop=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值