我想在我的项目中有一个可弹跳的滚动视图(类似 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>