loadcart_item.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical"
  6. >
  7. <TextView
  8. android:id="@+id/goods_barcode"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="条码:"
  12. android:textSize="@dimen/textsize_12"
  13. android:textColor="@color/red"
  14. />
  15. <TextView
  16. android:id="@+id/goods_code"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:text="产品编码:"
  20. android:textSize="@dimen/textsize_12"/>
  21. <TextView
  22. android:id="@+id/cart_loc"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content"
  25. android:text="窑车位置:"
  26. android:textSize="@dimen/textsize_12"/>
  27. </LinearLayout>