嗨我敢在Android的發展inexpirienced在HorizontalScrollView滾動的速度,所以我需要你的幫助:)控制機器人
的問題
我希望用戶能夠看到圖像,但一個列表,儘快爲他們滾動我希望他們能夠去下一個圖像,而不是滑動太多,跳過圖像
問題
那麼有沒有辦法讓滾動速度變慢或HorizontalScrollView不是我想要的那種視圖,以實現我想要的東西?
我的代碼
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/scrollView">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sample_0"
android:id="@+id/dog"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sample_1"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sample_2" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sample_3"/>
</LinearLayout>
</HorizontalScrollView>
非常感謝你回答但似乎我要找的是壓倒onScroll的東西( )方法d。如果我設法弄清楚,我會在這裏發佈答案:) – catchiecop