<?xml version="1.0" encoding="utf-8"?>
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<android.support.v7.widget.CardView
|
android:id="@+id/cv_dialog_problem_list_main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginTop="30dp"
|
android:layout_marginLeft="12dp"
|
android:layout_marginRight="14dp"
|
android:layout_marginBottom="40dp"
|
app:cardCornerRadius="6dp"
|
app:cardElevation="7dp">
|
<LinearLayout
|
android:id="@+id/ll_dialog_problem_list_main"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingTop="12dp"
|
android:paddingBottom="16dp"
|
android:paddingLeft="6dp"
|
android:paddingRight="6dp"
|
android:orientation="vertical">
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingLeft="12dp"
|
android:paddingRight="12dp"
|
android:orientation="horizontal">
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="18dp"
|
android:textColor="@color/primary_text"
|
android:text="问题列表"/>
|
</LinearLayout>
|
<LinearLayout
|
android:id="@+id/ll_last_subTask_data"
|
android:layout_marginTop="8dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingLeft="12.4dp"
|
android:paddingRight="12.4dp"
|
android:orientation="horizontal">
|
<TextView
|
android:id="@+id/tv_executors"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="wrap_content"
|
android:text=""/>
|
<TextView
|
android:id="@+id/tv_start_time"
|
android:gravity="right"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text=""/>
|
</LinearLayout>
|
<android.support.v7.widget.RecyclerView
|
android:layout_marginTop="6dp"
|
android:paddingBottom="8dp"
|
android:id="@+id/rv_dialog_problem_list_main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:listitem="@layout/item_problem_list">
|
</android.support.v7.widget.RecyclerView>
|
|
|
</LinearLayout>
|
</android.support.v7.widget.CardView>
|
<android.support.design.widget.FloatingActionButton
|
android:src="@drawable/icon_close_white"
|
|
android:id="@+id/fab_problem_list_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:fabSize="normal"
|
app:elevation="8dp"
|
app:layout_anchor="@id/cv_dialog_problem_list_main"
|
app:layout_anchorGravity="bottom|center"
|
/>
|
|
</android.support.design.widget.CoordinatorLayout>
|