sub_order_customer_item.xml 907 B

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:background="@color/white"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="60dp"
  9. android:gravity="center"
  10. android:orientation="vertical"
  11. >
  12. <TextView
  13. android:id="@+id/subordercustomertype"
  14. android:layout_width="match_parent"
  15. android:layout_height="60dp"
  16. android:gravity="center"
  17. android:textColor="@color/black"
  18. android:textSize="@dimen/textsize_13"
  19. />
  20. <View
  21. android:layout_width="match_parent"
  22. android:layout_height="1dp"
  23. android:background="@color/text_gray"/>
  24. </LinearLayout>
  25. </LinearLayout>