fix: Fix incorrect color of Top App Bar in Home tab in Landscape mode

This commit is contained in:
Prathamesh More 2023-03-15 19:27:55 +05:30
parent 8772bcb0b7
commit 3d7e89e270
2 changed files with 3 additions and 3 deletions

View file

@ -13,17 +13,16 @@
-->
<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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<code.name.monkey.retromusic.views.TopAppBarLayout
android:id="@+id/appBarLayout"
style="?appBarLayoutStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:liftOnScroll="true" />
android:fitsSystemWindows="true" />
<androidx.core.widget.NestedScrollView
android:id="@+id/container"

View file

@ -31,6 +31,7 @@
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:overScrollMode="@integer/overScrollMode"
android:transitionGroup="true"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
<androidx.constraintlayout.widget.ConstraintLayout