0

SurfaceView に OnTouchListener を追加したいのですが、うまく取得できません。MainActivity に OnTouchListener を追加しようとしました

surfaceView.setOnClickListener(this);

結果なし。助言がありますか?

主な活動:

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.surface_view);      
    surfaceView= (AnimationSurface) findViewById(R.id.surfaceView);
}

サーフェスビュー

public class AnimationSurface extends SurfaceView implements Runnable {

SurfaceHolder Holder;
Thread Thread = null;
boolean isRunning = true;
float x=0;
float y=0;

public AnimationSurface(Context context, AttributeSet attrs) {
    // TODO Auto-generated constructor stub
    super(context);
    Holder = getHolder();
    Thread = new Thread(AnimationSurface.this);
    Thread.start();     
}


@Override
public void run() {
    // TODO Auto-generated method stub
    [...]

    }
}

時間をありがとう、マルディタ

4

1 に答える 1

0

surfaceview内でonTouchEventを使用する必要があります

于 2013-07-16T21:44:31.460 に答える