-
Notifications
You must be signed in to change notification settings - Fork 0
/
rows.xml
49 lines (42 loc) · 1.52 KB
/
rows.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:scrollbars="horizontal">
<TextView
android:id="@+id/tvitemname"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight="2"
android:gravity="center"
android:text="computer mouse"
android:background="#ffb6ffb0"
android:textColor="#000"
android:textSize="20sp" />
<TextView
android:id="@+id/tvstock"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight="1"
android:gravity="center"
android:text="12"
android:background="#ffc5ffe3"
android:textColor="#000"
android:textSize="20sp" />
<TextView
android:id="@+id/tvsales"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight="1"
android:gravity="center"
android:text="0"
android:background="#ffd3f5ff"
android:textColor="#000"
android:textSize="20sp" />
</LinearLayout>
</LinearLayout>