|
|
@@ -0,0 +1,153 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="100dp"
|
|
|
+ android:id="@+id/pop_layout"
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@drawable/sugarbaground"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <ImageView
|
|
|
+ android:layout_marginLeft="@dimen/space_top_line_15"
|
|
|
+ android:layout_marginTop="@dimen/space_top_line_15"
|
|
|
+ android:id="@+id/btn_cancel"
|
|
|
+ android:layout_width="21dp"
|
|
|
+ android:layout_height="21dp"
|
|
|
+ android:src="@mipmap/delete_popup">
|
|
|
+ </ImageView>
|
|
|
+ <TextView
|
|
|
+ android:textColor="#ff333333"
|
|
|
+ android:id="@+id/text_title"
|
|
|
+ android:layout_marginTop="@dimen/space_top_line_15"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/textsize_16"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </TextView>
|
|
|
+ </RelativeLayout>
|
|
|
+ <TableLayout
|
|
|
+ android:layout_marginTop="@dimen/space_top_8"
|
|
|
+ style="@style/CardWhiteStyle_wrapheight">
|
|
|
+ <TableRow>
|
|
|
+ <TextView
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ android:text="@string/text_fragment_whcheck_pd_prodcode"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pd_prodcode"
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ android:textColor="@color/text_search"/>
|
|
|
+ </TableRow>
|
|
|
+ <TableRow>
|
|
|
+ <TextView
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ android:text="@string/text_fragment_whcheck_pr_detail"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pr_detail"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textColor="@color/text_search"/>
|
|
|
+ </TableRow>
|
|
|
+ <TableRow>
|
|
|
+ <TextView
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ android:text="@string/text_fragment_whcheck_pr_spec" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pr_spec"
|
|
|
+ style="@style/CardContentTextStylepopu"
|
|
|
+ android:textSize="@dimen/textsize_12"
|
|
|
+ android:textColor="@color/text_search" />
|
|
|
+ </TableRow>
|
|
|
+ </TableLayout>
|
|
|
+ <LinearLayout
|
|
|
+ style="@style/CardWhiteSytle_fillheight"
|
|
|
+ android:background="@color/white">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/button_normal"
|
|
|
+ android:orientation="horizontal">
|
|
|
+ <View
|
|
|
+ android:layout_width="0.5px"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:background="#B8B8B8" />
|
|
|
+ <!--第一列-->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_table_1"
|
|
|
+ style="@style/CardContentTextStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="仓库"
|
|
|
+ android:textSize="@dimen/space_top_line_15"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="0.5px"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:background="#B8B8B8" />
|
|
|
+ <!--第二列-->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_table_2"
|
|
|
+ style="@style/CardContentTextStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="储位"
|
|
|
+ android:textSize="@dimen/space_top_line_15"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="0.5px"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:background="#B8B8B8" />
|
|
|
+ <!--第三列-->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_table_3"
|
|
|
+ style="@style/CardContentTextStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="数量"
|
|
|
+ android:textSize="@dimen/space_top_line_15"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="0.5px"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:background="#B8B8B8" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_table_4"
|
|
|
+ style="@style/CardContentTextStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="DC"
|
|
|
+ android:textSize="@dimen/space_top_line_15"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!--信息列表-->
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:fillViewport="true"
|
|
|
+ android:background="@color/transparent">
|
|
|
+ <ListView
|
|
|
+ android:id="@+id/lv_detail_whmm"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/transparent"/>
|
|
|
+ </ScrollView>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</RelativeLayout>
|