Signal-Android/app/src/main/res/layout/chat_wallpaper_activity.xml

27 lines
1 KiB
XML
Raw Normal View History

2021-01-12 14:28:52 -04:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".wallpaper.ChatWallpaperActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/signal_background_primary"
app:title="@string/ChatWallpaperActivity__chat_wallpaper"
app:navigationIcon="@drawable/ic_arrow_left_24" />
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/chat_wallpaper" />
</LinearLayout>