使用Google地图在Android中保留中心标记或项目

时间:2014-03-29 18:21:16

标签: java android google-maps

我遇到了静电"标记"在Android上的谷歌地图上显示。我按照Google Play服务库提供的示例创建了一个功能正常的地图,该地图可以返回位置和更新。但是,我希望在地图中心有一个静态标记,用户可以单击该标记。

我的地图活动正在扩展FragmentActivity,这是我的活动xml:

    <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <TextView
    android:id="@+id/message_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
  <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <fragment
      android:id="@+id/map"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      class="com.google.android.gms.maps.SupportMapFragment"/>
    <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="bottom|right"
      android:background="#D000"
      android:orientation="vertical"
      android:padding="5dp">
      <Button
        android:id="@+id/get_my_location_button"
        android:padding="8dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="showMyLocation"
        android:text="@string/my_location"/>
    </LinearLayout>
  </RelativeLayout>
</LinearLayout>

0 个答案:

没有答案