<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<Button
|
android:id="@+id/rule_list_btn_add_rule"
|
style="@style/setting_button"
|
android:layout_marginTop="@dimen/h25"
|
android:layout_marginLeft="@dimen/w45"
|
android:layout_width="@dimen/w150"
|
android:layout_height="@dimen/h60"
|
android:text="新增业务表" />
|
|
<ListView
|
android:id="@+id/rule_list_lv_add_rule"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/rule_list_btn_add_rule"
|
android:layout_marginLeft="@dimen/w45"
|
android:layout_marginRight="@dimen/h45"
|
android:layout_marginTop="@dimen/h23"
|
android:layout_marginBottom="@dimen/h30"
|
android:divider="@null"
|
android:scrollbars="none"
|
android:listSelector="@color/transparent">
|
|
</ListView>
|
|
|
</RelativeLayout>
|