从片段中获取地图视图实例

时间:2014-01-15 14:26:27

标签: android google-maps android-fragments google-maps-android-api-2 supportmapfragment

我有MainFragment由两个片段组成,MapFragmentListFragment,这是它的布局:

MainFragment布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/cups_black" >

<fragment
    android:id="@+id/map_fragment"
    android:name="com.citylifeapps.cups.fragments.MapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent" /> 

</RelativeLayout>

 <RelativeLayout 
    android:id="@+id/black_layout"
    android:layout_marginTop="160dp"         
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/cups_black"
    android:visibility="gone" >
</RelativeLayout>

<fragment
    android:id="@+id/list_fragment"
    android:name="com.citylifeapps.cups.fragments.ListFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

 <Button
     android:id="@+id/button_close_full_map"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignParentBottom="true"
     android:layout_centerHorizontal="true"
     android:layout_margin="10dp"
     android:background="@drawable/map_close_button_selector"
     android:text="@string/close"
      android:visibility="gone"
     android:textColor="@color/cups_black" />

 <Button
     android:id="@+id/button_show_path"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignParentBottom="true"
     android:layout_alignParentRight="true"
     android:layout_margin="10dp"
     android:paddingLeft="10dp"
     android:paddingRight="10dp"
     android:background="@drawable/map_close_button_selector"
     android:text="@string/show_path"
     android:visibility="gone"
     android:textColor="@color/cups_black" />

  <Button
      android:id="@+id/button_navigate"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_above="@+id/button_show_path"
      android:layout_alignParentRight="true"
      android:layout_marginRight="10dp"
      android:background="@drawable/map_close_button_selector"
      android:paddingLeft="10dp"
      android:paddingRight="10dp"
      android:text="@string/navigate"
      android:visibility="gone"
      android:textColor="@color/cups_black" />

 </RelativeLayout>

虽然MapFragment中只包含SupportMapFramgnet,但

MapFragment布局:

<?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/mapview"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraTargetLat="32.062505"
map:cameraTargetLng="34.778651"
map:cameraZoom="12"
map:mapType="normal"
map:uiZoomControls="false"
map:uiRotateGestures="true"
map:uiScrollGestures="true"
map:uiZoomGestures="true"
map:uiTiltGestures="false" />

我想使用FragmentManager添加此片段,然后获取该实例 mapview基本上是SupportMapFragment,所以我要做的是:

getSupportFragmentManager().beginTransaction()
    .setCustomAnimations(R.anim.slide_in_right, R.anim.slide_out_left, R.anim.slide_in_left, R.anim.slide_out_right)
    .add(R.id.content, MainFragment.create(), "Main Fragment")
    .commit();

将此片段添加到Activity,然后我尝试获取mapview

smf = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapview);

但我在这里得到Null。

所以问题是:在这种情况下如何获取地图视图的实例?

1 个答案:

答案 0 :(得分:3)

因为MapFragment是子片段,所以需要使用childFragmentManager而不是SupportFragmentManager。

所以你需要做类似的事情:

MainFragment mainFragment = (MainFragment)getSupportFragmentManager.findFragmentById(R.id.content);

MapFragment mapFragment = (MapFragment) mainFragment.getChildFragmentManager().findFragmentById(R.id.map_fragment);

SupportMapFragment supportMap = (SupportMapFragment)mapFragment.getChildFragmentManager().findFragmentById(R.id.mapview);

这是未经测试的代码,但应指向正确的方向。

值得注意的是:您似乎还有一个您不需要的额外儿童片段。

MapFragment片段看起来就像是一个包含SupportMapFragment的片段。 如果没有必要,你应该尽量避免多余的儿童碎片。要么完全用SupportMapFragment替换MapFragment,要么在MapFragment中自己实现mapview。

相关问题