fedilab-Android-App/app/src/main/res/layout/activity_settings.xml

20 lines
889 B
XML
Raw Normal View History

2022-04-27 15:20:42 +02:00
<?xml version="1.0" encoding="utf-8"?>
2022-08-20 12:50:22 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-04-27 15:20:42 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-08-20 12:50:22 +02:00
xmlns:tools="http://schemas.android.com/tools"
2022-04-27 15:20:42 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-08-20 12:50:22 +02:00
tools:context=".activities.SettingsActivity"
tools:ignore="FragmentTagUsage">
2022-04-27 15:20:42 +02:00
2022-08-20 12:50:22 +02:00
<fragment
2022-04-27 15:20:42 +02:00
android:id="@+id/fragment_container"
2022-08-20 12:50:22 +02:00
android:name="androidx.navigation.fragment.NavHostFragment"
2022-04-27 15:20:42 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-08-20 12:50:22 +02:00
app:defaultNavHost="true"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
app:navGraph="@navigation/nav_graph_settings" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>