我的布局如下:
<LinearLayout
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:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:theme="@style/Toolbar"/>
<com.sample.android.scrolltricks.ObservableScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView style="@style/Item"
android:scaleType="centerCrop"
android:src="@drawable/london_flat"
tools:ignore="contentDescription"/>
<View android:id="@+id/placeholder"
android:layout_width="match_parent"
android:layout_height="@dimen/sticky_height"/>
<View style="@style/Item.Bottom"/>
<View style="@style/Item.Bottom.Alt"/>
<View style="@style/Item.Bottom"/>
<View style="@style/Item.Bottom.Alt"/>
<View style="@style/Item.Bottom"/>
<View style="@style/Item.Bottom.Alt"/>
</LinearLayout>
<Button android:id="@+id/sticky" style="@style/Sticky"/>
</FrameLayout>
</com.sample.android.scrolltricks.ObservableScrollView>
</LinearLayout>
这是滚动时显示粘滞按钮的代码:
override fun onScrollChanged(scrollY: Int) {
sticky.translationY = Math.max(
placeholder.top - resources.getDimension(R.dimen.sticky_height) / 2,
scrollY.toFloat() - 65
)
}
粘性按钮显示在工具栏下方,我想将其部分显示在工具栏上方。 (scrollY.toFloat() - 65
)
你知道如何解决吗?
答案 0 :(得分:1)
不幸的是,您无法在布局中将Button
放在ScrollView
上方。
您的Button
是FrameLayout
的子级,而ScrollView
本身是子级,因此其绘制区域受到父级边界的限制。
最好通过将所有内容包装在CoordinatorLayout
中,然后在要设置特定位置的CoordinatorLayout.Behavior
上应用自定义View
来解决这些任务。
希望有帮助。
答案 1 :(得分:1)