<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/lightGray"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/ll_scenselist"
|
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/scense_list"
|
android:textColor="@color/primary_text"
|
android:textSize="@dimen/textSize_16" />
|
|
<Spinner
|
android:id="@+id/spinner_scenselist"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_exec_date"
|
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: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_exec_date"
|
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_task_executors"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white"
|
android:clickable="true"
|
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/task_executor"
|
android:textColor="@color/primary_text"
|
android:textSize="@dimen/textSize_16" />
|
|
<TextView
|
android:id="@+id/tv_task_executors"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="6dp"
|
android:layout_weight="1"
|
android:gravity="right"
|
android:singleLine="true"
|
android:text="@string/hint_pick_up_executors"
|
android:textSize="@dimen/textSize_16" />
|
</LinearLayout>
|
|
</LinearLayout>
|