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.
53 lines
1.7 KiB
XML
53 lines
1.7 KiB
XML
<?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">
|
|
|
|
|
|
<include layout="@layout/toolbar_yx"></include>
|
|
|
|
<com.rehome.zhdcoa.weiget.NoscrollViewPager
|
|
android:id="@+id/vp_centent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_margin="@dimen/px_10"
|
|
android:layout_weight="9"/>
|
|
|
|
<com.rehome.zhdcoa.weiget.AutoRadioGroup
|
|
android:id="@+id/rg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/px_90"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/radiobutton"
|
|
android:button="@null"
|
|
android:checked="true"
|
|
android:gravity="center"
|
|
android:text="安健环巡检"
|
|
android:textColor="#ffffff" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/radiobutton"
|
|
android:button="@null"
|
|
android:gravity="center"
|
|
android:text="隐患排查录入"
|
|
android:textColor="#777777" />
|
|
|
|
</com.rehome.zhdcoa.weiget.AutoRadioGroup>
|
|
|
|
|
|
</LinearLayout>
|