0

我想在我的项目中有一个可弹跳的滚动视图(类似 iPhone)。我找到了一些关于overscroll的文章,并像This class here一样使用它。但我不知道如何将滚动视图设置为其标题。

我还尝试在我的自定义滚动视图之前添加一个视图,但它不起作用(最后的代码)。

我需要一个附加到滚动视图的视图我该怎么做?任何想法将不胜感激。

<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>
4

1 回答 1

0

请通过https://github.com/Larphoid/android-Overscroll-ListView。我希望这就是你要找的。

如果您想要带有标题的滚动视图,其中标题保留并且列表滚动和反弹,然后尝试使用 addHeaderView 而不是 Scrollview 来使用列表视图。

于 2013-04-11T09:13:55.787 回答