1

ギャラリーでスワイプごとに1つの画像を変更するために、このスレッドのアプローチを使用しています。私の問題は、この画像の変更を行うには、ユーザーがギャラリーの幅の少なくとも 50% の画像をドラッグする必要があることです。これは、大きなデバイスでは受け入れられない可能性があります。

そのため、ドラッグ距離を現在よりも小さくする必要があります (デフォルトで 50%)。どうすれば達成できますか?

4

1 に答える 1

2

I would suggest two options:

1: Instead of the Gallery use the ViewPager from the Support Library. When using the ViewPager you only drag one page at a time without the carousel effect of the gallery.

http://developer.android.com/reference/android/support/v4/view/ViewPager.html

2: If you want to stick with the Gallery: Yaaic (an IRC client) used the Gallery as well in earlier versions and it was too easy to scroll several pages with one fling so we reduced the sensitivity of the Gallery in this commit:

https://github.com/pocmo/Yaaic/commit/db91a85676210c7f36510861c38b935d87d65bb9

于 2012-07-03T09:09:17.047 に答える