<?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"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context="cn.flightfeather.thirdappmodule.activity.MOVMapActivity">
|
|
<include
|
android:id="@+id/actionbar"
|
layout="@layout/layout_actionbar"
|
/>
|
|
<com.amap.api.maps.MapView
|
android:id="@+id/map"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/actionbar"
|
/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/actionbar"
|
android:orientation="vertical"
|
>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:background="@color/transparent"
|
/>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/rv_scenselist"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:visibility="gone"
|
android:background="@color/transparentwhite"
|
/>
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_selectedscenselist"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/actionbar"
|
android:orientation="vertical"
|
android:visibility="gone"
|
>
|
|
<View
|
android:id="@+id/view_empty"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:background="@color/transparent"
|
/>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/rv_selectedscenselist"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:background="@color/transparentwhite"
|
/>
|
</LinearLayout>
|
|
<include
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/buttonGroup"
|
layout="@layout/buttongroup"
|
android:layout_margin="@dimen/dimen8"
|
android:layout_below="@+id/rl_scenseDesc"
|
android:layout_alignParentRight="true"
|
/>
|
|
<RelativeLayout
|
android:id="@+id/rl_scenseDesc"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/actionbar"
|
android:background="@color/transparentwhite"
|
>
|
|
<TextView
|
android:id="@+id/tv_scenseDescBar_left"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@color/colorPrimary"
|
android:layout_alignParentLeft="true"
|
android:layout_centerVertical="true"
|
android:padding="@dimen/dimen8"
|
/>
|
|
<TextView
|
android:id="@+id/tv_scenseDesc"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="@color/colorPrimary"
|
android:layout_alignParentTop="true"
|
android:layout_toRightOf="@+id/tv_scenseDescBar_left"
|
android:layout_toLeftOf="@+id/tv_submit"
|
android:layout_marginStart="@dimen/fab_margin"
|
android:layout_marginEnd="@dimen/fab_margin"
|
android:paddingTop="@dimen/dimen8"
|
/>
|
|
<TextView
|
android:id="@+id/tv_submit"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/save"
|
android:textColor="@color/colorPrimary"
|
android:layout_alignParentRight="true"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:padding="@dimen/dimen8"
|
/>
|
</RelativeLayout>
|
|
<include
|
android:id="@+id/view_waiting"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
layout="@layout/layout_waiting"
|
android:visibility="gone"
|
android:layout_below="@+id/actionbar"
|
/>
|
|
</RelativeLayout>
|