mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
79 lines
No EOL
3.9 KiB
XML
79 lines
No EOL
3.9 KiB
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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/homeRoot"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|keyboard|navigation"
|
|
android:paddingTop="0dp">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent">
|
|
|
|
<com.google.android.material.navigationrail.NavigationRailView
|
|
android:layout_width="62dp"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/nav_rail_view"
|
|
android:background="?attr/primaryGrayBackground"
|
|
app:itemTextColor="@color/item_select_color"
|
|
|
|
app:itemIconTint="@color/item_select_color"
|
|
app:menuGravity="center"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:labelVisibilityMode="unlabeled"
|
|
app:menu="@menu/bottom_nav_menu">
|
|
|
|
</com.google.android.material.navigationrail.NavigationRailView>
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/nav_view"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/primaryGrayBackground"
|
|
|
|
app:labelVisibilityMode="labeled"
|
|
app:itemTextColor="@color/item_select_color"
|
|
app:itemIconTint="@color/item_select_color"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:menu="@menu/bottom_nav_menu"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/nav_host_fragment"
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:defaultNavHost="true"
|
|
app:navGraph="@navigation/mobile_navigation"
|
|
app:layout_constraintStart_toEndOf="@+id/nav_rail_view"
|
|
app:layout_constraintBottom_toTopOf="@+id/cast_mini_controller_holder"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
<LinearLayout
|
|
tools:layout_height="100dp"
|
|
android:layout_width="0dp"
|
|
app:layout_constraintStart_toEndOf="@+id/nav_rail_view"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintBottom_toTopOf="@+id/nav_view"
|
|
android:id="@+id/cast_mini_controller_holder">
|
|
<!--com.google.android.gms.cast.framework.media.widget.MiniControllerFragment-->
|
|
<fragment
|
|
app:customCastBackgroundColor="?attr/primaryGrayBackground"
|
|
app:castControlButtons="@array/cast_mini_controller_control_buttons"
|
|
android:id="@+id/cast_mini_controller"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
class="com.lagradost.cloudstream3.ui.MyMiniControllerFragment"
|
|
tools:ignore="FragmentTagUsage" />
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</FrameLayout> |