<?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"
|
android:background="@color/white">
|
|
<include layout="@layout/layout_toolbar_2" />
|
|
<android.support.v4.widget.NestedScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<android.support.constraint.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<TextView
|
android:id="@+id/txt_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="@dimen/dimen16"
|
android:layout_marginStart="@dimen/dimen16"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:textColor="@color/main_color_1"
|
android:textStyle="bold"
|
android:textSize="@dimen/textSize_18"
|
android:text="最新文件"/>
|
|
<TextView
|
android:id="@+id/txt_more"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginEnd="@dimen/dimen16"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="@id/txt_title"
|
android:text="更多"/>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/recycler_view"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
tools:listitem="@layout/item_night_work"
|
tools:itemCount="2"
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
|
android:orientation="horizontal"
|
android:layout_marginStart="@dimen/dimen16"
|
android:layout_marginTop="@dimen/dimen16"
|
app:layout_constraintTop_toBottomOf="@id/txt_title"/>
|
|
<TextView
|
android:id="@+id/txt_history"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="@dimen/dimen16"
|
android:layout_marginTop="@dimen/dimen16"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/recycler_view"
|
android:textColor="@color/main_color_1"
|
android:textStyle="bold"
|
android:textSize="@dimen/textSize_18"
|
android:text="历史文件"/>
|
|
<TextView
|
android:id="@+id/txt_more_2"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginEnd="@dimen/dimen16"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="@id/txt_history"
|
android:text="更多"/>
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/recycler_view_2"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="@dimen/dimen16"
|
android:layout_marginStart="@dimen/dimen16"
|
android:layout_marginEnd="@dimen/dimen16"
|
app:layout_constraintTop_toBottomOf="@id/txt_history"
|
tools:listitem="@layout/item_night_work_2"
|
tools:itemCount="6"
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
|
android:orientation="vertical"/>
|
</android.support.constraint.ConstraintLayout>
|
</android.support.v4.widget.NestedScrollView>
|
|
</LinearLayout>
|