我想在我的项目中使用一个可弹性的scrollview(像iPhone一样)。我找到一些关于 overscroll 的文章,并像This class here一样使用它。但我不知道如何设置滚动视图作为其标题。
我还尝试在自定义滚动视图之前添加一个视图,但它不起作用(最后的代码)。
我需要附加到scrollview的视图我该怎么做?任何想法都会感激不尽。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="#FF8080"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<com.amix.tstsrc.MyScrollView
android:id="@+id/my_scrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#8585FF">
<TextView
android:id="@+id/help_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white" />
</LinearLayout>
</com.amix.tstsrc.MyScrollView>
答案 0 :(得分:0)
请浏览https://github.com/Larphoid/android-Overscroll-ListView。我希望这就是你要找的东西。
如果你想要带有标题的滚动视图,其中标题会停留并且列表会滚动并反弹,那么请尝试使用addHeaderView而不是Scrollview来获取listview。