1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <androidx .constraintlayout.widget.ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4+ xmlns : tools =" http://schemas.android.com/tools"
5+ android : layout_width =" match_parent"
6+ android : layout_height =" match_parent"
7+ tools : context =" .MainActivity" >
8+
9+ <androidx .constraintlayout.widget.Guideline
10+ android : id =" @+id/logoGuideline"
11+ android : layout_width =" wrap_content"
12+ android : layout_height =" wrap_content"
13+ android : orientation =" horizontal"
14+ app : layout_constraintGuide_percent =" 0.175" />
15+
16+ <ImageView
17+ android : id =" @+id/logoImage"
18+ android : layout_width =" wrap_content"
19+ android : layout_height =" wrap_content"
20+ android : contentDescription =" The HTTP Toolkit Logo"
21+ app : layout_constraintBottom_toBottomOf =" @+id/logoGuideline"
22+ app : layout_constraintTop_toTopOf =" @+id/logoGuideline"
23+ app : layout_constraintEnd_toEndOf =" parent"
24+ app : layout_constraintStart_toStartOf =" parent"
25+ app : srcCompat =" @drawable/ic_transparent_icon" />
26+
27+ <androidx .constraintlayout.widget.Guideline
28+ android : id =" @+id/statusGuideline"
29+ android : layout_width =" wrap_content"
30+ android : layout_height =" wrap_content"
31+ android : orientation =" horizontal"
32+ app : layout_constraintGuide_percent =" 0.35" />
33+
34+ <TextView
35+ android : id =" @+id/statusText"
36+ style =" @style/StatusText"
37+ android : layout_width =" wrap_content"
38+ android : layout_height =" wrap_content"
39+ android : layout_marginStart =" 8dp"
40+ android : layout_marginEnd =" 8dp"
41+ android : text =" Not Connected"
42+ app : layout_constraintBottom_toBottomOf =" @+id/statusGuideline"
43+ app : layout_constraintTop_toTopOf =" @+id/statusGuideline"
44+ app : layout_constraintEnd_toEndOf =" parent"
45+ app : layout_constraintStart_toStartOf =" parent" />
46+
47+ <LinearLayout
48+ android : id =" @+id/statusDetailContainer"
49+ android : layout_width =" wrap_content"
50+ android : layout_height =" wrap_content"
51+ android : layout_marginStart =" 16dp"
52+ android : layout_marginEnd =" 16dp"
53+ app : layout_constrainedWidth =" true"
54+ app : layout_constraintEnd_toEndOf =" parent"
55+ app : layout_constraintStart_toStartOf =" parent"
56+ app : layout_constraintTop_toBottomOf =" @+id/statusText"
57+ android : orientation =" vertical" />
58+
59+ <com .google.android.material.card.MaterialCardView
60+ android : layout_height =" wrap_content"
61+ android : layout_width =" match_parent"
62+ android : layout_marginStart =" 16dp"
63+ android : layout_marginEnd =" 16dp"
64+ app : layout_constraintBottom_toBottomOf =" parent"
65+ app : layout_constraintEnd_toEndOf =" parent"
66+ app : layout_constraintStart_toStartOf =" parent"
67+ style =" @style/PortraitButtonsCard"
68+ >
69+ <LinearLayout
70+ android : id =" @+id/buttonLayoutContainer"
71+ android : layout_width =" match_parent"
72+ android : layout_height =" wrap_content"
73+ android : orientation =" vertical"
74+ android : paddingStart =" 16dp"
75+ android : paddingEnd =" 16dp"
76+ android : paddingTop =" 12dp"
77+ android : paddingBottom =" 10dp"
78+ android : clipToPadding =" false" >
79+ </LinearLayout >
80+ </com .google.android.material.card.MaterialCardView>
81+
82+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments