我想在滚动视图中创建一个视图(实际上是一个按钮),但是当用户向下滚动并且按钮向上时,它只向上移动直到它到达可见屏幕的顶部然后停留在那里像一个固定的标题,直到用户再次向上滚动,然后它返回到原来的位置。
我已经给出了理解的屏幕;
答案 0 :(得分:0)
将您的父视图组更改为RelativeLayout,然后将Button和ScrollBar设置为此RelatieveLayout的直接子项。
答案 1 :(得分:0)
你可以通过
简单地实现这个目标<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"
------put your code here-----/>
<Button
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</FrameLayout>