-1

所以我正在尝试为我的 android 应用程序实现 google maps v2。我已经使用下面的代码成功地将地图添加到我的应用程序中。我还添加了布局代码。我不想更改此实现,因为我有一个表格视图并且地图是选项卡之一。你对我能做什么有什么建议吗?

    mMapFragment = MapFragment.newInstance();   
    android.app.FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
    fragmentTransaction.add(R.id.frame, mMapFragment);
    fragmentTransaction.commit();

布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@+id/frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="0dp" >
    </FrameLayout>    
</RelativeLayout>
4

1 回答 1

1

您可以像这样添加标记:

mMapFragment.getMap().addMarker(new MarkerOptions()
        .position(new LatLng(0, 0))
        .title("Hello world"));
于 2013-03-25T12:27:39.770 回答