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 =" wrap_content"
5+ android : gravity =" top"
6+ android : orientation =" vertical"
7+ android : paddingBottom =" 5dp" >
8+
9+ <GridLayout
10+ android : layout_width =" match_parent"
11+ android : layout_height =" wrap_content"
12+ android : columnCount =" 2"
13+ android : useDefaultMargins =" true" >
14+
15+ <TextView
16+ style =" @style/GridLayoutTitleTextView"
17+ android : layout_width =" wrap_content"
18+ android : layout_height =" wrap_content"
19+ android : text =" Company ID:" />
20+
21+ <TextView
22+ android : id =" @+id/companyId"
23+ style =" @style/GridLayoutDataTextView" />
24+
25+ <TextView
26+ style =" @style/GridLayoutTitleTextView"
27+ android : layout_width =" wrap_content"
28+ android : layout_height =" wrap_content"
29+ android : text =" Advertisement:" />
30+
31+ <TextView
32+ android : id =" @+id/advertisement"
33+ style =" @style/GridLayoutDataTextView" />
34+
35+ <TextView
36+ style =" @style/GridLayoutTitleTextView"
37+ android : layout_width =" wrap_content"
38+ android : layout_height =" wrap_content"
39+ android : text =" UUID:" />
40+
41+ <TextView
42+ android : id =" @+id/uuid"
43+ style =" @style/GridLayoutDataTextView" />
44+
45+ <TextView
46+ style =" @style/GridLayoutTitleTextView"
47+ android : layout_width =" wrap_content"
48+ android : layout_height =" wrap_content"
49+ android : text =" Major:" />
50+
51+ <TextView
52+ android : id =" @+id/major"
53+ style =" @style/GridLayoutDataTextView" />
54+
55+ <TextView
56+ style =" @style/GridLayoutTitleTextView"
57+ android : layout_width =" wrap_content"
58+ android : layout_height =" wrap_content"
59+ android : text =" Minor:" />
60+
61+ <TextView
62+ android : id =" @+id/minor"
63+ style =" @style/GridLayoutDataTextView" />
64+
65+ <TextView
66+ style =" @style/GridLayoutTitleTextView"
67+ android : layout_width =" wrap_content"
68+ android : layout_height =" wrap_content"
69+ android : text =" TX Power:" />
70+
71+ <TextView
72+ android : id =" @+id/txpower"
73+ style =" @style/GridLayoutDataTextView" />
74+ </GridLayout >
75+
76+ </LinearLayout >
0 commit comments