You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.9 KiB
XML
117 lines
3.9 KiB
XML
<?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/layout_base" />
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/vp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="9" />
|
|
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100px"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<com.rehome.zhdcoa.weiget.AutoRadioGroup
|
|
android:id="@+id/rg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:background="#ffffff"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_left"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="5px"
|
|
android:layout_weight="1"
|
|
android:background="#ffffff"
|
|
android:button="@null"
|
|
android:checked="true"
|
|
android:drawableTop="@drawable/examleft"
|
|
android:gravity="center"
|
|
android:text="上一条"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="25px" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_check"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="5px"
|
|
android:layout_weight="1"
|
|
android:background="#ffffff"
|
|
android:button="@null"
|
|
android:drawableTop="@drawable/examchoose"
|
|
android:gravity="center"
|
|
android:text="查看"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="25px" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_right"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="5px"
|
|
android:layout_weight="1"
|
|
android:background="#ffffff"
|
|
android:button="@null"
|
|
android:drawableTop="@drawable/examright"
|
|
android:gravity="center"
|
|
android:text="下一条"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="25px" />
|
|
|
|
|
|
</com.rehome.zhdcoa.weiget.AutoRadioGroup>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100px"
|
|
android:background="#00000000"
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<Button
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
android:background="#00000000"
|
|
android:clickable="false"
|
|
android:visibility="invisible" />
|
|
|
|
<Button
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
android:clickable="false"
|
|
android:visibility="invisible" />
|
|
|
|
<Button
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
android:clickable="false"
|
|
android:visibility="invisible" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|