所以我正在尝试为我的Android应用程序实现谷歌地图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>
答案 0 :(得分:1)
您可以添加如下标记:
mMapFragment.getMap().addMarker(new MarkerOptions()
.position(new LatLng(0, 0))
.title("Hello world"));