funkwhale-app-android/app/src/main/res/layout/activity_main.xml

51 lines
2.0 KiB
XML
Raw Normal View History

2019-08-19 16:50:33 +02:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
2019-08-19 16:50:33 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/surface">
2019-08-19 16:50:33 +02:00
2023-01-10 13:56:20 +01:00
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="?attr/actionBarSize"
2023-01-10 13:56:20 +01:00
app:defaultNavHost="true"
app:navGraph="@navigation/main_nav"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2019-08-19 16:50:33 +02:00
<audio.funkwhale.ffa.views.NowPlayingView
android:id="@+id/now_playing"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom"
android:layout_margin="8dp"
android:alpha="0"
android:visibility="gone"
app:cardCornerRadius="3dp"
app:cardElevation="12dp"
app:layout_dodgeInsetEdges="bottom"
tools:alpha="1"
tools:visibility="visible">
2019-08-19 16:50:33 +02:00
2021-07-16 10:03:52 +02:00
<include
android:id="@+id/now_playing_container"
layout="@layout/partial_now_playing" />
2019-08-19 16:50:33 +02:00
</audio.funkwhale.ffa.views.NowPlayingView>
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:theme="@style/AppTheme.AppBar"
2021-07-04 13:42:40 +02:00
app:backgroundTint="@color/elevatedSurface"
app:layout_insetEdge="bottom"
app:navigationIcon="@drawable/funkwhaleshape"
tools:menu="@menu/toolbar" />
2019-08-19 16:50:33 +02:00
2021-07-02 13:55:49 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>