dialog_see_order.xml 3.01 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:paddingTop="20dp"
    android:background="@color/gray_bg">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/see_order_text"
        android:textColor="#000"
        android:textSize="18sp"
        />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:layout_marginTop="20dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:orientation="vertical">

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/bomView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/orderView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/materialView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/poheaderView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/routingView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

            <com.huaheng.common.widget.SeeOrderView
                android:id="@+id/productionView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </com.huaheng.common.widget.SeeOrderView>

        </LinearLayout>
    </ScrollView>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginBottom="20dp"
        android:layout_marginTop="10dp"
        android:orientation="horizontal">


        <TextView
            android:id="@+id/see_order_sure"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/sure"
            android:textColor="@color/colorAccent"
            android:textSize="16sp" />
    </LinearLayout>

</LinearLayout>