我已经尝试了很多围绕stackoverflow的方法,但是我无法获得在布局中对齐中心的标记。标记始终低于实际地理点。我有一个标记,它位于实际的地理位置。但布局中心的标记不在实际的地理位置。
这是布局:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:orientation="vertical"
tools:context="in.gitbox.cabtap.rider.MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<ImageView
android:id="@+id/fixed_pin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@mipmap/map_pin"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
<include layout="@layout/toolbar"
android:layout_height="?actionBarSize"
android:layout_width="match_parent"
android:layout_gravity="top"/>
<include layout="@layout/places_search_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_marginRight="30dp"
android:layout_marginEnd="30dp"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp"/>
<include
layout="@layout/folding_cell_layout"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@color/colorPrimaryLight"
android:layout_gravity="bottom" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/follow_user_fab"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
app:layout_anchor="@id/folding_cell"
app:layout_anchorGravity="top|right|end"
app:backgroundTint="@color/colorPrimaryDark"
android:src="@drawable/ic_my_location_black_24dp"
android:layout_margin="16dp"
android:focusable="true"/>
</android.support.design.widget.CoordinatorLayout>
这是设备上引脚的屏幕截图。
我的原始标记位于确切的地理位置,但我在中心布局使用的标记不在确切的地理位置。如果有关于CameraUpdate或其他一些调整的解决方法,请告诉我。