78 lines
3.5 KiB
XML
78 lines
3.5 KiB
XML
<?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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<com.amap.api.maps.MapView
|
|
android:id="@+id/map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<!-- <com.oneclouds.wangluohuoyun.map.MyWebView
|
|
android:id="@+id/map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>-->
|
|
<LinearLayout
|
|
android:id="@+id/protect"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_bg"
|
|
android:orientation="vertical"
|
|
android:alpha="0"
|
|
android:visibility="gone"
|
|
/>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/theme_color">
|
|
<RelativeLayout
|
|
android:layout_marginTop="@dimen/dp_38"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/theme_color">
|
|
<ImageButton
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:id="@+id/return_btn"
|
|
android:layout_width="@dimen/dp_21"
|
|
android:layout_height="@dimen/dp_18"
|
|
android:src="@mipmap/return_btn"
|
|
android:background="@null"
|
|
android:scaleType="fitXY"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:layout_marginBottom="@dimen/dp_12"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/sp_18"
|
|
android:text="运单详情"
|
|
android:textColor="#fff"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/bottom_sheet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:behavior_hideable="true"
|
|
app:behavior_peekHeight="@dimen/dp_300"
|
|
app:layout_behavior="@string/bottom_sheet_behavior">
|
|
<com.arpa.hndahesudintocctmsdriver.util.view.BaseRecyclerView
|
|
android:id="@+id/brv"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#F8F8F8" />
|
|
</androidx.core.widget.NestedScrollView>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
</LinearLayout>
|
|
</RelativeLayout> |