ギャラリー ウィジェットにスライドする 1 ~ 10 個の画像が含まれています。画面をストライプすると、画像が左から右にスクロールすることがわかっています。10 後に最初の画像で自動的に開始する自動円形ギャラリーが必要です。自動円形アダプターまたは方法はありますか ???
final Gallery g = (Gallery) findViewById(R.id.gallery);
g.setAdapter(new ImageAdapter(this));
Animation animation = AnimationUtils.loadAnimation(this,
R.anim.rotate_indefinitely);
animation.getInterpolator();
animation.setDuration(1000);
animation.setStartOffset(200);
animation.setRepeatMode(2);
animation.setFillAfter(false);
animation.setFillEnabled(true);
g.setAnimation(animation);
g.startAnimation(animation);
しかし、私は最初の画像がアニメーション化されているのを見るだけです..
私のビデオを見てください...