AndroidプログラミングはGallryの中で毎回スライドして1ページだけを表示する方法を実現します。


本明細書の例は、AndroidプログラミングがGallry内の各スライドを1ページだけ表示する方法を説明する。皆さんに参考にしてあげます。具体的には以下の通りです。

import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.widget.Gallery;
public class DetialGallery extends Gallery {
  public DetialGallery(Context context ,AttributeSet attrSet) {
   super(context,attrSet);
   // TODO Auto-generated constructor stub
  }
  private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2)
  {
   return e2.getX() > e1.getX();
  }
  @Override
  public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
  // TODO Auto-generated method stub
  // return super.onFling(e1, e2, 0, velocityY);
  //   :       
  // return false;
  //   :         :                2   。
  int kEvent;
  if(isScrollingLeft(e1, e2)){
  //Check if scrolling left
  kEvent = KeyEvent.KEYCODE_DPAD_LEFT;
  } else{
  //Otherwise scrolling right
  kEvent = KeyEvent.KEYCODE_DPAD_RIGHT;
  }
  onKeyDown(kEvent, null);
  return true;
 }
}

ここで述べたように、皆さんのAndroidプログラムの設計に役に立ちます。