<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
tools:context="cn.flightfeather.thirdapp.activity.NewMonthTaskActivity">
|
|
<include
|
android:id="@+id/view_taskinfo"
|
layout="@layout/item_task_list"
|
/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/lightGray"
|
android:layout_below="@+id/view_taskinfo"
|
android:layout_marginTop="12dp"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/ll_adjusttask_method"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shap_stroke_bottom"
|
android:clickable="true"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:orientation="horizontal"
|
android:padding="16dp">
|
|
<TextView
|
android:id="@+id/textView2"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/adjust_method"
|
android:textColor="@color/primary_text"
|
android:textSize="@dimen/textSize_16" />
|
|
<TextView
|
android:id="@+id/tv_adjusttask_method"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="6dp"
|
android:layout_weight="1"
|
android:gravity="right"
|
android:singleLine="true"
|
android:textSize="@dimen/textSize_16" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_adjusttask_attr"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shap_stroke_bottom"
|
android:clickable="true"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:orientation="horizontal"
|
android:padding="16dp">
|
|
<TextView
|
android:id="@+id/tv_adjusttask_attr_key"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/Exec_Date"
|
android:textColor="@color/primary_text"
|
android:textSize="@dimen/textSize_16" />
|
|
<TextView
|
android:id="@+id/tv_adjusttask_attr_value"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="6dp"
|
android:layout_weight="1"
|
android:gravity="right"
|
android:singleLine="true"
|
android:textSize="@dimen/textSize_16" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_adjusttask_reason"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shap_stroke_bottom"
|
android:clickable="true"
|
android:layout_marginTop="12dp"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:orientation="horizontal"
|
android:padding="16dp">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/adjust_reason"
|
android:textColor="@color/primary_text"
|
android:textSize="@dimen/textSize_16" />
|
|
<TextView
|
android:id="@+id/tv_adjusttask_reason"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="6dp"
|
android:layout_weight="1"
|
android:gravity="right"
|
android:singleLine="true"
|
android:textSize="@dimen/textSize_16" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_adjusttask_description"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shap_stroke_bottom"
|
android:clickable="true"
|
android:foreground="?android:attr/selectableItemBackground"
|
android:orientation="horizontal"
|
android:padding="16dp"
|
>
|
|
<EditText
|
android:id="@+id/et_adjusttask_description"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:hint="@string/adjust_description"
|
android:textColor="@color/primary_text"
|
android:lines="3"
|
android:gravity="left|top"
|
android:textSize="@dimen/textSize_16" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<include
|
android:id="@+id/area_picker"
|
layout="@layout/area_picker"
|
android:visibility="gone"
|
/>
|
|
<include
|
android:id="@+id/view_waiting"
|
layout="@layout/layout_waiting"
|
android:visibility="gone"
|
/>
|
|
</RelativeLayout>
|