lmw
2024-09-04 f4a6d4f0996238f9c85e4986deffe69a1c8256e6
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/head_head"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:background="@color/bgcolor"
    android:gravity="center"
    android:orientation="vertical">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <com.bin.david.form.core.SmartTable
            android:id="@+id/table"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="10dp"
            android:layout_marginTop="1dp" />
 
        <ViewSwitcher
            android:id="@+id/bottom_detail"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:background="@color/black"
            android:clickable="true"
            android:focusable="true"
            android:inAnimation="@anim/bottom_detail_in"
            android:outAnimation="@anim/bottom_detail_out"
            android:persistentDrawingCache="animation"
            android:visibility="gone">
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical">
                <com.bin.david.form.core.SmartTable
                    android:id="@+id/detailtable"
                    android:layout_width="wrap_content"
                    android:layout_height="400dp"
                    android:layout_margin="10dp" />
                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:orientation="horizontal">
                    <Button
                        android:id="@+id/closeDetail"
                        android:layout_width="250dp"
                        android:layout_height="80dp"
                        android:layout_below="@+id/bottom_detail"
                        android:layout_gravity="center"
                        android:layout_margin="10dp"
                        android:layout_marginTop="20dp"
                        android:background="@drawable/circular_button_blue"
                        android:gravity="center"
                        android:text="关闭"
                        android:textSize="30dp" />
 
                    <Button
                        android:id="@+id/takeOut"
                        android:layout_width="250dp"
                        android:layout_height="80dp"
                        android:layout_below="@+id/bottom_detail"
                        android:layout_gravity="center"
                        android:layout_margin="10dp"
                        android:layout_marginTop="20dp"
                        android:background="@drawable/circular_button"
                        android:gravity="center"
                        android:text="取出"
                        android:textSize="30dp" />
                </LinearLayout>
            </LinearLayout>
 
 
        </ViewSwitcher>
    </RelativeLayout>
</LinearLayout>