DeteMin
2020-03-31 77c62e023d2dc31200fc696158df84b3aee90ee7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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>