Я сталкивался с такой же проблемой при попытке что-то подобное. То, чего я смог достичь, это: Верхний отступ вида Recycler = высота строки состояния + высота панели инструментов . К сожалению, я не использовал здесь никакого поведения, и положение панели инструментов фиксировано.
Вот как я этого добился:
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?primaryColor"
tools:context=".ui.fragments.mainactivity.library.LibraryFragment">
<com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:scrollbars="none" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.paolovalerdi.abbey.views.StatusBarView
android:id="@+id/statusBar"
android:layout_width="match_parent"
android:layout_height="@dimen/status_bar_padding" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
android:elevation="0dp"
app:contentInsetStart="0dp"
tools:ignore="UnusedAttribute">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/userImage"
style="@style/ToolbarIcon"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/default_item_margin"
android:padding="8dp"
android:src="@drawable/default_artist_image"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/toolbarTile"
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_gravity="center_horizontal"
android:singleLine="true"
android:text="@string/library"
android:textColor="?android:textColorPrimary"
tools:ignore="RelativeOverlap,RtlSymmetry" />
<com.paolovalerdi.abbey.views.IconImageView
android:id="@+id/searchIcon"
style="@style/ToolbarIcon"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/default_item_margin"
android:src="@drawable/ic_search" />
</RelativeLayout>
</androidx.appcompat.widget.Toolbar>
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize" />
</FrameLayout>
</LinearLayout>
StatusBarView.Kt
class StatusBarView : View {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(
context: Context,
attrs: AttributeSet,
defStyleAttr: Int
) : super(
context,
attrs,
defStyleAttr
)
override fun onApplyWindowInsets(insets: WindowInsets): WindowInsets {
val lp = layoutParams
lp.height = insets.systemWindowInsetTop
layoutParams = lp
return super.onApplyWindowInsets(insets)
}
И все, что вам нужно сделать, это приложить верхний слой к вашему виду переработчика:
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
ViewCompat.requestApplyInsets(view)
ViewCompat.setOnApplyWindowInsetsListener(view) { v, insets ->
topPadding = insets.systemWindowInsetTop + resources.getDimensionPixelSize(R.dimen.mini_player_height)
recyclerView.updatePadding(top = topPadding)
insets
}
}
Заметил, что я запрашиваю вставки, потому что это делается внутри фрагмента, а затем все, что вам нужно сделать, это просто установить слушателя в корневое представление (или ваше представление переработчика). Также в вашем представлении переработчика должен быть клип android: clipToPadding = "false".
Надеюсь, это поможет:)
Я оставлю пост, который помог мне понять, как обращаться со вставками, как профи.
Windows Insets + переходы фрагментов
WindowInsets - Слушатели макетов