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.
157 lines
5.0 KiB
XML
157 lines
5.0 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" />
|
|
|
|
<com.rehome.dywoa.weiget.NoscrollViewPager
|
|
android:id="@+id/vp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="750px"
|
|
android:maxHeight="850px"
|
|
android:layout_margin="@dimen/px_10">
|
|
|
|
</com.rehome.dywoa.weiget.NoscrollViewPager>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="#99000000"/>
|
|
|
|
<com.rehome.dywoa.weiget.AutoRadioGroup
|
|
android:id="@+id/rg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/px_90"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb1"
|
|
android:layout_width="@dimen/px_100"
|
|
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"/>
|
|
|
|
<View
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"
|
|
android:background="#99000000">
|
|
|
|
</View>
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb2"
|
|
android:layout_width="@dimen/px_100"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/radiobutton"
|
|
android:button="@null"
|
|
android:gravity="center"
|
|
android:text="方法"
|
|
android:textColor="#777777"/>
|
|
|
|
<View
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"
|
|
android:background="#99000000">
|
|
|
|
</View>
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb3"
|
|
android:layout_width="@dimen/px_100"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/radiobutton"
|
|
android:button="@null"
|
|
android:gravity="center"
|
|
android:text="标准"
|
|
android:textColor="#777777"/>
|
|
|
|
<View
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"
|
|
android:background="#99000000">
|
|
|
|
</View>
|
|
</com.rehome.dywoa.weiget.AutoRadioGroup>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="#99000000">
|
|
|
|
</View>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/px_20"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_last"
|
|
style="@style/button"
|
|
android:background="@drawable/border_line_while"
|
|
android:visibility="visible"
|
|
android:layout_width="@dimen/px_200"
|
|
android:textColor="@color/colorPrimary"
|
|
android:layout_marginRight="@dimen/px_20"
|
|
android:text="@string/last"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_save_next"
|
|
style="@style/button"
|
|
android:layout_width="@dimen/px_200"
|
|
android:layout_marginRight="@dimen/px_20"
|
|
android:text="保存"
|
|
android:visibility="gone"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_save"
|
|
style="@style/button"
|
|
android:layout_width="@dimen/px_200"
|
|
android:background="@drawable/border_line_while"
|
|
android:textColor="@color/colorPrimary"
|
|
android:layout_marginRight="20px"
|
|
android:text="@string/save"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_next"
|
|
style="@style/button"
|
|
android:background="@drawable/border_line_while"
|
|
android:textColor="@color/colorPrimary"
|
|
android:visibility="visible"
|
|
android:layout_width="@dimen/px_200"
|
|
android:text="下一条"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_exit"
|
|
style="@style/button"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/px_200"
|
|
android:text="保存数据并退出"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="bottom"
|
|
android:orientation="horizontal">
|
|
<Button
|
|
android:id="@+id/btn_submit_qx"
|
|
style="@style/button_qx_submit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/colorPrimary"
|
|
android:text="提交缺陷"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|