11<?xml version =" 1.0" encoding =" utf-8" ?>
22<androidx .constraintlayout.widget.ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : app =" http://schemas.android.com/apk/res-auto"
34 xmlns : tools =" http://schemas.android.com/tools"
45 android : id =" @+id/contact_selector_root"
56 android : layout_width =" match_parent"
67 android : layout_height =" match_parent" >
78
9+ <com .google.android.material.appbar.MaterialToolbar
10+ android : id =" @+id/toolbar"
11+ android : layout_width =" 0dp"
12+ android : layout_height =" ?attr/actionBarSize"
13+ android : elevation =" 4dp"
14+ app : navigationIcon =" @drawable/ic_arrow_back"
15+ app : navigationIconTint =" ?attr/colorOnSurface"
16+ app : titleTextColor =" ?attr/colorOnSurface"
17+ app : titleCentered =" true"
18+ app : title =" @string/select_contacts"
19+ app : layout_constraintTop_toTopOf =" parent"
20+ app : layout_constraintStart_toStartOf =" parent"
21+ app : layout_constraintEnd_toEndOf =" parent" />
22+
823 <androidx .fragment.app.FragmentContainerView
9- android : layout_width =" match_parent"
10- android : layout_height =" match_parent"
11- android : name =" com.parishod.watomatic.fragment.ContactSelectorFragment"
1224 android : id =" @+id/contact_selector_layout"
13- tools : layout =" @layout/fragment_contact_selector" />
14-
25+ android : layout_width =" 0dp"
26+ android : layout_height =" 0dp"
27+ android : name =" com.parishod.watomatic.fragment.ContactSelectorFragment"
28+ tools : layout =" @layout/fragment_contact_selector"
29+ app : layout_constraintTop_toBottomOf =" @id/toolbar"
30+ app : layout_constraintBottom_toBottomOf =" parent"
31+ app : layout_constraintStart_toStartOf =" parent"
32+ app : layout_constraintEnd_toEndOf =" parent" />
1533
1634</androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments