inventory_adapter_item.xml 838 B

1234567891011121314151617181920212223
  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="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/tv_inventory_item"
  9. android:layout_width="fill_parent"
  10. android:layout_height="50dp"
  11. android:layout_marginLeft="10dp"
  12. android:layout_marginRight="10dp"
  13. android:gravity="center"
  14. android:layout_gravity="center_vertical"
  15. android:textColor="@color/black"
  16. android:text="kucun"
  17. android:textSize="@dimen/textsize_14" /><View
  18. android:layout_width="match_parent"
  19. android:layout_height="1dp"
  20. android:background="@color/EBEBEB" />
  21. </LinearLayout>