<?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:orientation="vertical">
|
|
<include layout="@layout/toolbar"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@drawable/ic_bground"
|
android:orientation="horizontal"
|
>
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:paddingLeft="@dimen/ui_margin_10dp"
|
android:orientation="vertical"
|
>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/ui_margin_50dp"
|
android:textColor="@android:color/white"
|
android:textSize="28sp"
|
android:text="目前使用的题目"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:id="@+id/recyclerview_useexams"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:gravity="center_vertical"
|
android:layout_height="@dimen/ui_margin_60dp"
|
android:orientation="horizontal">
|
<Button
|
android:layout_width="0dp"
|
android:layout_height="@dimen/ui_margin_50dp"
|
android:text="取消"
|
android:id="@+id/btn_light_cancle"
|
android:layout_weight="1"/>
|
<Button
|
android:layout_width="0dp"
|
android:layout_height="@dimen/ui_margin_50dp"
|
android:text="恢复默认"
|
android:id="@+id/btn_light_default"
|
android:layout_weight="1"/>
|
<Button
|
android:layout_width="0dp"
|
android:layout_height="@dimen/ui_margin_50dp"
|
android:id="@+id/btn_light_sure"
|
android:text="确认"
|
android:layout_weight="1"/>
|
</LinearLayout>
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:paddingRight="@dimen/ui_margin_10dp"
|
android:paddingLeft="@dimen/ui_margin_10dp"
|
android:orientation="vertical"
|
>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/ui_margin_50dp"
|
android:textColor="@android:color/white"
|
android:textSize="28sp"
|
android:text="题目库"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:id="@+id/recyclerview_select"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
</LinearLayout>
|