2014-05-17 65 views
0

一個MapView我有一個activity_main XML佈局看起來像:得到SupportMapFragment

<?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" /> 

我可以在MainActivity得到這個XML佈局MapView的?

回答

2

你可以得到它這樣

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

嘿!感謝您的回答! 但這是一個GoogleMap,而不是一個MapView .. 我需要得到MapView ..可能嗎? – user2320431

+1

試試吧,看看是否有幫助.. @ user2320431 – Lal

+0

無論如何,謝謝你的嘗試!:) – user2320431