Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボタンがクリックされたときにギャラリー画像が前後にアニメーション化されるようにします。setSelection メソッドを使用しましたが、アニメーションなしで次の項目と前の項目にスクロールするだけです。これを達成する方法はありますか?
Android ギャラリーのバグは非推奨です。以前は、ユーザー Fling をシミュレートしてアニメーションを実現していました。
int currentPosition = gal.getSelectedItemPosition(); gallery.setSelection(currentPosition + 1); gallery.onFling(null, null, (float) (currentPosition + 1) * 1000, 0);