Update transitions in the home fragment to X-axis. I noticed a visual issue in the detail transition in the existing version stemming from how the main fragment's drawing is clipped by the bottom sheet, resulting in a less-than-ideal Z-axis transition. While I wanted to fix this by attempting to switch to inset based bottom sheet management, I still need to wait for more changes in order to successfully pull that off, and hence I'll be reverting it soon. Moving these transitions to X-axis prevents this visual issue while still being roughly semantically similar.
32 lines
No EOL
1.4 KiB
XML
32 lines
No EOL
1.4 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:transitionGroup="true"
|
|
android:background="?attr/colorSurface">
|
|
|
|
<org.oxycblt.auxio.detail.DetailAppBarLayout
|
|
android:id="@+id/detail_appbar"
|
|
style="@style/Widget.Auxio.AppBarLayout"
|
|
app:liftOnScroll="true"
|
|
app:liftOnScrollTargetViewId="@id/detail_recycler">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/detail_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:navigationIcon="@drawable/ic_back_24" />
|
|
|
|
</org.oxycblt.auxio.detail.DetailAppBarLayout>
|
|
|
|
<org.oxycblt.auxio.ui.recycler.AuxioRecyclerView
|
|
android:id="@+id/detail_recycler"
|
|
style="@style/Widget.Auxio.RecyclerView.Grid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
tools:listitem="@layout/item_detail" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |