| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@mipmap/main_bg"
- android:divider="@drawable/divider_horizontal"
- android:orientation="vertical"
- android:showDividers="middle">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:divider="@drawable/divider_horizontal"
- android:orientation="horizontal"
- android:showDividers="middle">
- <com.onlylemi.mapview.library.MapView
- android:id="@+id/mapview"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="right">
- <LinearLayout
- android:id="@+id/point_list"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginLeft="20dp"
- android:background="@drawable/common_layout_bg"
- android:orientation="vertical"
- android:padding="@dimen/common_spacing"
- android:minWidth="200dp"
- android:visibility="gone"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="@id/cb_show"
- app:layout_constraintTop_toTopOf="parent">
- <com.grkj.iscs_mars.view.widget.CommonBtn
- android:id="@+id/cb_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_above="@id/tv_tip"
- android:layout_gravity="center_horizontal"
- app:btn_bg="@drawable/common_btn_blue_bg"
- app:btn_name="@string/back" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:gravity="center"
- android:layout_marginVertical="@dimen/common_spacing"
- android:text="@string/switch_information"
- android:textColor="@color/white"
- android:textSize="@dimen/common_text_size"
- android:textStyle="bold" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:minWidth="200dp"
- android:paddingHorizontal="10dp" />
- </LinearLayout>
- <ImageView
- android:id="@+id/cb_show"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:src="@drawable/icon_chevron_left"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </FrameLayout>
- </LinearLayout>
|