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 : id =" @+id/main"
6+ android : layout_width =" match_parent"
7+ android : layout_height =" match_parent"
8+ tools : context =" otus.gpb.homework.activities.sender.SenderActivity" >
9+
10+ <Button
11+ android : id =" @+id/buttonMaps"
12+ android : layout_width =" wrap_content"
13+ android : layout_height =" wrap_content"
14+ android : text =" To Google Maps"
15+ app : layout_constraintBottom_toBottomOf =" parent"
16+ app : layout_constraintEnd_toEndOf =" parent"
17+ app : layout_constraintHorizontal_bias =" 0.5"
18+ app : layout_constraintStart_toStartOf =" parent"
19+ app : layout_constraintTop_toTopOf =" parent"
20+ app : layout_constraintVertical_bias =" 0.1" />
21+
22+ <Button
23+ android : id =" @+id/buttonEmail"
24+ android : layout_width =" wrap_content"
25+ android : layout_height =" wrap_content"
26+ android : text =" Send Email"
27+ app : layout_constraintBottom_toBottomOf =" parent"
28+ app : layout_constraintEnd_toEndOf =" parent"
29+ app : layout_constraintHorizontal_bias =" 0.497"
30+ app : layout_constraintStart_toStartOf =" parent"
31+ app : layout_constraintTop_toTopOf =" parent"
32+ app : layout_constraintVertical_bias =" 0.3" />
33+
34+ <Button
35+ android : id =" @+id/buttonReceiver"
36+ android : layout_width =" wrap_content"
37+ android : layout_height =" wrap_content"
38+ android : text =" Open Receiver"
39+ app : layout_constraintBottom_toBottomOf =" parent"
40+ app : layout_constraintEnd_toEndOf =" parent"
41+ app : layout_constraintHorizontal_bias =" 0.497"
42+ app : layout_constraintStart_toStartOf =" parent"
43+ app : layout_constraintTop_toTopOf =" parent"
44+ app : layout_constraintVertical_bias =" 0.5" />
45+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments