我想允许我的HorizontalScrollView可滚动,即使它没有足够的项目。如果我在ScrollView上说了5张图像就会滚动显示。但是当我只有3时却没有。有任何想法吗?感谢。
答案 0 :(得分:2)
根据我的理解,你是否愿意启用overScrollMode,在这种情况下,只需在你的define scrollview xml中添加android:overScrollMode="always"
:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:overScrollMode="always">