-
Notifications
You must be signed in to change notification settings - Fork 0
/
CODE BACKUP FOR OLD LAYOUT.txt
74 lines (65 loc) · 2.53 KB
/
CODE BACKUP FOR OLD LAYOUT.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.httpexample.MainActivity"
tools:ignore="MergeRootFrame" >
<LinearLayout
android:id="@+id/dataContainer"
android:layout_width="match_parent"
android:layout_height="75dp"
android:background="#BBededed"
android:orientation="vertical" >
<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:gravity="center_vertical"
android:textIsSelectable="false"
android:textSize="20sp" />
<TextView
android:id="@+id/bPresName"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#88EDEDED" />
<LinearLayout
android:id="@+id/options"
android:layout_width="match_parent"
android:layout_height="32dp"
android:background="#662a2a2a"
android:orientation="horizontal" >
<TextView
android:id="@+id/present"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="Present"
android:textColor="#ff9f00"
android:textSize="15sp"
android:textStyle="italic" />
<TextView
android:id="@+id/bPresButtons"
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#44EDEDED" />
<TextView
android:id="@+id/delete"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="Delete"
android:textColor="#ff9f00"
android:textSize="15sp"
android:textStyle="italic" />
</LinearLayout>
<TextView
android:id="@+id/bBottom"
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#99EDEDED" />
</LinearLayout>
</RelativeLayout>