You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.3 KiB
64 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="com.example.activity.TestAnswerActivity">
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/vp_answer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="85dp"
|
|
android:background="#F16C4D"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/_btn_previous"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_weight="1"
|
|
android:background="#00000000"
|
|
android:drawableTop="@drawable/ic_previous"
|
|
android:gravity="center"
|
|
android:text="上一题" />
|
|
|
|
<Button
|
|
android:id="@+id/_btn_submit"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_weight="1"
|
|
android:background="#00000000"
|
|
android:drawableTop="@drawable/ic_finish"
|
|
android:gravity="center"
|
|
android:text="交卷" />
|
|
|
|
<Chronometer
|
|
android:id="@+id/_chro_exam"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_weight="1"
|
|
android:drawableTop="@drawable/ic_time"
|
|
android:gravity="center" />
|
|
|
|
<Button
|
|
android:id="@+id/_btn_next"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_weight="1"
|
|
android:background="#00000000"
|
|
android:drawableTop="@drawable/ic_next"
|
|
android:gravity="center"
|
|
android:text="下一题" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|