| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/tv_inventory_item"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:gravity="center"
- android:layout_gravity="center_vertical"
- android:textColor="@color/black"
- android:text="kucun"
- android:textSize="@dimen/textsize_14" /><View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|