blob: 4c9b86fb275b1ac864e7dc02fa9248f755aa2018 [file] [log] [blame]
Ömer Faruk Yılmaz50f56832022-06-03 10:16:06 +00001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2022 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 -->
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000017<androidx.constraintlayout.widget.ConstraintLayout
Ömer Faruk Yılmaz50f56832022-06-03 10:16:06 +000018 xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:app="http://schemas.android.com/apk/res-auto"
Ömer Faruk Yılmaz74178bc2023-02-02 07:55:08 +000020 xmlns:tools="http://schemas.android.com/tools"
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000021 android:id="@+id/container"
Ömer Faruk Yılmaz50f56832022-06-03 10:16:06 +000022 android:layout_width="match_parent"
23 android:layout_height="match_parent"
Ömer Faruk Yılmaz74178bc2023-02-02 07:55:08 +000024 tools:context=".MainActivity">
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000025
Ömer Faruk Yılmaz8d87e692023-04-10 06:10:44 +000026 <com.google.android.material.bottomnavigation.BottomNavigationView
27 android:id="@+id/nav_view"
28 android:layout_width="0dp"
29 android:layout_height="wrap_content"
30 android:layout_marginStart="0dp"
31 android:layout_marginEnd="0dp"
32 android:background="?android:attr/windowBackground"
33 app:layout_constraintBottom_toBottomOf="parent"
34 app:layout_constraintLeft_toLeftOf="parent"
35 app:layout_constraintRight_toRightOf="parent"
36 app:menu="@menu/bottom_nav_menu" />
37
Ömer Faruk Yılmaz3b680642022-06-15 04:41:00 +000038 <fragment
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000039 android:id="@+id/nav_host_fragment_activity_main"
Ömer Faruk Yılmaz3b680642022-06-15 04:41:00 +000040 android:name="androidx.navigation.fragment.NavHostFragment"
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000041 android:layout_width="0dp"
42 android:layout_height="0dp"
Ömer Faruk Yılmaz3b680642022-06-15 04:41:00 +000043 app:defaultNavHost="true"
Ömer Faruk Yılmazd0d1c722023-02-17 01:18:05 +000044 app:layout_constraintBottom_toBottomOf="parent"
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000045 app:layout_constraintLeft_toLeftOf="parent"
46 app:layout_constraintRight_toRightOf="parent"
47 app:layout_constraintTop_toTopOf="parent"
Ömer Faruk Yılmaz3b680642022-06-15 04:41:00 +000048 app:navGraph="@navigation/nav_graph" />
49
Ömer Faruk Yılmaz80487632023-02-01 08:07:25 +000050</androidx.constraintlayout.widget.ConstraintLayout>