从SupportMapFragment获取MapView

时间:2014-05-17 15:20:43

标签: android

我有一个activity_main xml布局,如下所示:

<?xml version="1.0" encoding="utf-8"?>

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:id="@+id/map"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    class="com.google.android.gms.maps.SupportMapFragment" />

我可以从这个xml布局中获取我的MainActivity MapView吗?

1 个答案:

答案 0 :(得分:2)

你可以这样得到它

GoogleMap mMap = ((SupportMapFragment) getFragmentManager()
                .findFragmentById(R.id.map)).getMap();