* Merge MainActivity and MainActivityTv * Merge AddServerFragment and TvAddServerFragment * Merge LoginFragment and TvLoginFragment * Add new focus effect * Add libraries to tv home * Fix home empty when navigating back on mobile * Add loading indicator to home fragment * Add empty LibraryFragment * Add focus outline to settings button * Use DiffCallback for updating home fragment * Visually upgrade MediaDetailFragment * Make all home items focusable in touch mode * Add new focus border to person item * Add LibraryFragment layout for TV (Whilst also making a clusterfuck of the navigation) * Add missing try-catch in HomeViewModel * Don't show CancellationException on AddServerFragment * Fix a few crashes plus errors
19 lines
No EOL
828 B
XML
19 lines
No EOL
828 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/nav_host_fragment_activity_main"
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:defaultNavHost="true"
|
|
app:layout_constraintBottom_toTopOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toBottomOf="parent"
|
|
app:navGraph="@navigation/app_navigation" />
|
|
|
|
</FrameLayout> |