activity_external_packing_barcode_print.xml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/parentRel"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/qingcolor" >
  7. <include
  8. android:id="@+id/printTitle"
  9. layout="@layout/fragment_title" />
  10. <LinearLayout
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_below="@id/printTitle"
  14. android:orientation="vertical" >
  15. <ListView
  16. android:id="@+id/productInfoLst"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:cacheColorHint="#00000000"
  20. android:layout_marginBottom="15dip"
  21. android:divider="@null"
  22. android:listSelector="#00000000" />
  23. </LinearLayout>
  24. </RelativeLayout>