2021-12-09 18:01:40 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-12-12 17:38:23 +05:30
|
|
|
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-09 18:01:40 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:id="@+id/mainMotionLayout"
|
2021-12-09 18:01:40 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2023-11-18 00:40:02 +05:30
|
|
|
android:background="?android:colorBackground"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layoutDescription="@xml/activity_main_scene"
|
2023-06-24 23:27:00 +05:30
|
|
|
app:motionProgress="1"
|
2022-09-20 23:23:34 +05:30
|
|
|
tools:context=".ui.activities.MainActivity">
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-07-31 18:44:39 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-07-31 18:44:39 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:menu="@menu/action_bar"
|
|
|
|
app:title="@string/app_name" />
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-07-31 18:44:39 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2022-01-28 18:31:41 +05:30
|
|
|
|
2021-12-09 18:31:47 +05:30
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
2021-12-09 18:25:32 +05:30
|
|
|
android:id="@+id/bottomNav"
|
|
|
|
android:layout_width="match_parent"
|
2021-12-09 18:01:40 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2021-12-09 18:25:32 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:menu="@menu/bottom_menu" />
|
2021-12-09 18:01:40 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/fragment"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/bottomNav"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2023-11-17 00:45:56 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/appBarLayout" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:background="@android:color/transparent"
|
2021-12-12 17:38:23 +05:30
|
|
|
android:elevation="20dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-06-27 22:47:52 +05:30
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
2021-12-12 17:38:23 +05:30
|
|
|
</androidx.constraintlayout.motion.widget.MotionLayout>
|