Gallery によって拡張された MYGallery クラスがあります。onSwipe onFling メソッドが呼び出されず、何をする必要があります。
コードは以下の通りです
public MyGallery(PhotoAlbumDetailActivity context) {
super(context);
this.context = context;
this.setFadingEdgeLength(0);
//this.setSpacing(10);
}
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
System.out.println("On Fling");
return true;
}
私の主な活動で this.mConverseGallery = new ConverseGallery(this);