2015-05-30 106 views
2

嗨我敢在Android的發展inexpirienced在Horizo​​ntalScrollView滾動的速度,所以我需要你的幫助:)控制機器人

的問題

我希望用戶能夠看到圖像,但一個列表,儘快爲他們滾動我希望他們能夠去下一個圖像,而不是滑動太多,跳過圖像

問題

那麼有沒有辦法讓滾動速度變慢或Horizo​​ntalScrollView不是我想要的那種視圖,以實現我想要的東西?

我的代碼

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

回答

1

UPDATE

我書面方式我落得這樣做的人誰想知道:)

最後,我一直在尋找的東西是viewPager我喜歡實現this

1

,我發現關於在其他網站Android: HorizontalScrollView smoothScroll animation time(小谷歌搜索:P)減慢滾動查看一些信息。 但是如果你想要做的圖像顯示了很多,ü可以有內存問題,在這種情況下也許ü應考慮本Managing Bitmap Memory

+0

非常感謝你回答但似乎我要找的是壓倒onScroll的東西( )方法d。如果我設法弄清楚,我會在這裏發佈答案:) – catchiecop