1+ <androidx .constraintlayout.widget.ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
2+ xmlns : app =" http://schemas.android.com/apk/res-auto"
3+ xmlns : tools =" http://schemas.android.com/tools"
4+ android : layout_width =" match_parent"
5+ android : layout_height =" match_parent"
6+ tools : context =" io.matthewnelson.sampleapp.ui.fragments.settings.tor.IsolationFlagsFragment" >
7+
8+ <LinearLayout
9+ android : id =" @+id/isolation_flags_space_top"
10+ android : layout_width =" 0dp"
11+ android : layout_height =" 0dp"
12+ android : orientation =" horizontal"
13+ app : layout_constraintBottom_toTopOf =" @+id/isolation_flags_layout_constraint_inner"
14+ app : layout_constraintEnd_toEndOf =" parent"
15+ app : layout_constraintStart_toStartOf =" parent"
16+ app : layout_constraintTop_toTopOf =" parent" />
17+
18+ <LinearLayout
19+ android : id =" @+id/isolation_flags_layout_bottom"
20+ android : layout_width =" 0dp"
21+ android : layout_height =" 0dp"
22+ android : orientation =" horizontal"
23+ app : layout_constraintBottom_toBottomOf =" parent"
24+ app : layout_constraintEnd_toEndOf =" parent"
25+ app : layout_constraintStart_toStartOf =" parent"
26+ app : layout_constraintTop_toBottomOf =" @id/isolation_flags_layout_constraint_inner" />
27+
28+ <LinearLayout
29+ android : id =" @+id/isolation_flags_layout_end"
30+ android : layout_width =" 0dp"
31+ android : layout_height =" 0dp"
32+ android : orientation =" horizontal"
33+ app : layout_constraintBottom_toTopOf =" @+id/isolation_flags_layout_bottom"
34+ app : layout_constraintEnd_toEndOf =" parent"
35+ app : layout_constraintStart_toEndOf =" @id/isolation_flags_layout_constraint_inner"
36+ app : layout_constraintTop_toBottomOf =" @id/isolation_flags_space_top" />
37+
38+ <LinearLayout
39+ android : id =" @+id/isolation_flags_layout_start"
40+ android : layout_width =" 0dp"
41+ android : layout_height =" 0dp"
42+ android : orientation =" horizontal"
43+ app : layout_constraintBottom_toTopOf =" @+id/isolation_flags_layout_bottom"
44+ app : layout_constraintEnd_toStartOf =" @+id/isolation_flags_layout_constraint_inner"
45+ app : layout_constraintStart_toStartOf =" parent"
46+ app : layout_constraintTop_toBottomOf =" @+id/isolation_flags_space_top" />
47+
48+ <androidx .constraintlayout.widget.ConstraintLayout
49+ android : id =" @+id/isolation_flags_layout_constraint_inner"
50+ android : layout_width =" 0dp"
51+ android : layout_height =" 0dp"
52+ android : layout_marginStart =" 60dp"
53+ android : layout_marginTop =" 60dp"
54+ android : layout_marginEnd =" 60dp"
55+ android : layout_marginBottom =" 60dp"
56+ android : background =" @drawable/isolation_flag_fragment_background"
57+ app : layout_constraintBottom_toBottomOf =" parent"
58+ app : layout_constraintEnd_toEndOf =" parent"
59+ app : layout_constraintStart_toStartOf =" parent"
60+ app : layout_constraintTop_toTopOf =" parent" >
61+
62+ </androidx .constraintlayout.widget.ConstraintLayout>
63+
64+
65+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments