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.
37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
|
3 years ago
|
<?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_yx" />
|
||
|
|
|
||
|
|
|
||
|
|
<ScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
|
||
|
|
<com.rehome.zhdcoa.weiget.AutoListView
|
||
|
|
android:id="@+id/lv"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:divider="#00000000"
|
||
|
|
android:dividerHeight="0px" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/btn_commit"
|
||
|
|
style="@style/button"
|
||
|
|
android:layout_width="200px"
|
||
|
|
android:layout_margin="20px"
|
||
|
|
android:text="提交" />
|
||
|
|
</LinearLayout>
|
||
|
|
</ScrollView>
|
||
|
|
|
||
|
|
</LinearLayout>
|