| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?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:orientation="vertical">
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/height_split"
- android:background="@color/gray_light_s"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:background="@color/white">
- <LinearLayout
- android:id="@+id/ll_1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- android:paddingTop="@dimen/margin_s"
- android:paddingBottom="@dimen/margin_s"
- android:paddingLeft="@dimen/margin_default"
- android:paddingRight="@dimen/margin_default"
- android:background="@drawable/ripple_item">
- <ImageView
- android:layout_width="@dimen/width_location"
- android:layout_height="@dimen/height_location"
- android:scaleType="fitXY"
- android:src="@mipmap/location_1"/>
- <TextView
- android:id="@+id/tv_1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/margin_s"
- android:text="未选择"
- android:textSize="@dimen/text_size_p"
- android:textColor="@color/black_text"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/height_split"
- android:background="@color/gray_light_s"/>
- <LinearLayout
- android:id="@+id/ll_2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- android:paddingTop="@dimen/margin_s"
- android:paddingBottom="@dimen/margin_s"
- android:paddingLeft="@dimen/margin_default"
- android:paddingRight="@dimen/margin_default"
- android:background="@drawable/ripple_item">
- <ImageView
- android:layout_width="@dimen/width_location"
- android:layout_height="@dimen/height_location"
- android:scaleType="fitXY"
- android:src="@mipmap/location_2"/>
- <TextView
- android:id="@+id/tv_2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/margin_s"
- android:text="未选择"
- android:textSize="@dimen/text_size_p"
- android:textColor="@color/black_text"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/height_split"
- android:background="@color/gray_light_s"/>
- <LinearLayout
- android:id="@+id/ll_3"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- android:paddingTop="@dimen/margin_s"
- android:paddingBottom="@dimen/margin_s"
- android:paddingLeft="@dimen/margin_default"
- android:paddingRight="@dimen/margin_default"
- android:background="@drawable/ripple_item">
- <ImageView
- android:layout_width="@dimen/width_location"
- android:layout_height="@dimen/height_location"
- android:scaleType="fitXY"
- android:src="@mipmap/location_3"/>
- <TextView
- android:id="@+id/tv_3"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/margin_s"
- android:text="未选择"
- android:textSize="@dimen/text_size_p"
- android:textColor="@color/black_text"/>
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/height_split"
- android:background="@color/gray_light_s"/>
- <com.baidu.mapapi.map.MapView
- android:id="@+id/mv_main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:clickable="true" />
- </LinearLayout>
|