使用层布局(FrameLayout)把viewpage放在底层 效果如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.viewpager.widget.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
</androidx.viewpager.widget.ViewPager>
</FrameLayout>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStart="0dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:id="@+id/iv_map"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentEnd="true"
android:layout_marginLeft="4dp"
android:background="@drawable/selector_bg_img"
android:padding="12dp"
android:src="@mipmap/icon_add" />
<ImageView
android:id="@+id/location_img"
android:layout_width="@dimen/dp_25"
android:layout_height="@dimen/dp_24"
android:layout_gravity="center"
android:src="@mipmap/icon_location"
android:visibility="gone" />
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="定位中"
android:textColor="@color/white"
android:textSize="18sp" />
<ImageView
android:id="@+id/iv_add"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentEnd="true"
android:layout_gravity="right"
android:layout_marginRight="4dp"
android:background="@drawable/selector_bg_img"
android:padding="14dp"
android:src="@mipmap/icon_titler" />
</androidx.appcompat.widget.Toolbar>
</RelativeLayout>
</RelativeLayout>