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+ android : layout_width =" match_parent"
5+ android : layout_height =" match_parent" >
6+
7+ <fragment
8+ android : id =" @+id/host_fragment"
9+ android : name =" androidx.navigation.fragment.NavHostFragment"
10+ android : layout_width =" match_parent"
11+ android : layout_height =" 0dp"
12+ app : layout_constraintBottom_toTopOf =" @+id/bottom_navigation"
13+ app : layout_constraintEnd_toEndOf =" parent"
14+ app : layout_constraintStart_toStartOf =" parent"
15+ app : layout_constraintTop_toTopOf =" parent" />
16+
17+ <com .google.android.material.bottomnavigation.BottomNavigationView
18+ android : id =" @+id/bottom_navigation"
19+ android : layout_width =" match_parent"
20+ android : layout_height =" wrap_content"
21+ android : layout_gravity =" bottom"
22+ android : background =" @color/thCommit"
23+ app : itemIconTint =" @color/userRankPos"
24+ app : itemTextColor =" @color/userRankPos"
25+ app : labelVisibilityMode =" selected"
26+ app : layout_constraintBottom_toBottomOf =" parent"
27+ app : layout_constraintEnd_toEndOf =" parent"
28+ app : layout_constraintStart_toStartOf =" parent"
29+ app : menu =" @menu/bottom_navigation_menu" >
30+
31+ </com .google.android.material.bottomnavigation.BottomNavigationView>
32+
33+ <com .google.android.gms.ads.AdView
34+ android : id =" @+id/github_login_ads_view"
35+ android : layout_width =" match_parent"
36+ android : layout_height =" wrap_content"
37+ app : adSize =" BANNER"
38+ app : adUnitId =" @string/banner_ad_unit_id"
39+ app : layout_constraintBottom_toTopOf =" @+id/bottom_navigation"
40+ app : layout_constraintEnd_toEndOf =" parent"
41+ app : layout_constraintStart_toStartOf =" parent" />
42+
43+
44+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments