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.
45 lines
1.3 KiB
XML
45 lines
1.3 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"/>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<ListView
|
|
android:id="@+id/lv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/px_5"
|
|
android:divider="#00000000"
|
|
android:dividerHeight="0px"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="10px"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_huomian"
|
|
style="@style/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_gravity="right"
|
|
android:layout_marginLeft="@dimen/px_100"
|
|
android:layout_marginRight="@dimen/px_100"
|
|
android:layout_weight="1"
|
|
android:text="豁免"/>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|