陈力
2023-06-09 cca5f79b3af36e5a908c5dfecbd30110febe3baa
app/src/main/res/layout/framgment_selectorder.xml
@@ -4,14 +4,78 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:gravity="center"
    android:background="@color/bgcolor"
    android:orientation="vertical" >
    android:gravity="center"
    android:orientation="vertical">
    <com.bin.david.form.core.SmartTable
        android:id="@+id/table"
        android:layout_margin="10dp"
        android:layout_marginTop="1dp"
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="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>