1

Java 用のアプリを作成するのは初めてです。スレッドベースのループで常に再描画されるSurfaceViewを使用して、小さなTest-Appを構築することができました。

onTouchListener を実装したかったのですが、これらすべての Graphical をうまく処理できました。Google から言われたとおりに実行し、OnTouchListener を実装し、SurfaceView を OnTouchListener に設定する (直接:Panel.p.setOnTouchListenerおよび間接: View view = findViewById(R.id.SurfaceView01);view.setOnTouchListener(this);).

どちらの場合でも結果は得られませんでした。私のアプリは、パネルへの参照のみを含む XML で「フルスクリーン」に設定されています。

そのエラーがどこにあるのかわかりません.onTouchListener以外はすべて機能します。問題に関連するすべてのファイルをここに追加して、誰かが私が間違ったことを知っていることを願っています。

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >


<com.example.test.Panel android:id="@+id/SurfaceView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:maxHeight="40dip">
</com.example.test.Panel>

主な活動:

//'Constructor'
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main);
    //View view = findViewById(R.id.SurfaceView01);
    //view.setOnTouchListener(this);
    Panel.p.setOnTouchListener(this);
}

//Called when App's being closed
@Override
public void onPause(){
    super.onPause();
    CanvasThread._run = false;
}

//Touching - Somehow doesn't seem to want to do anything :(
@Override
public boolean onTouch (View v, MotionEvent event){
    int x = (int)event.getX();
    int y = (int)event.getY();
    CanvasThread.scene.bird.setDestination(x, y);
    //Pressing
    if(event.getAction()==MotionEvent.ACTION_DOWN){}
    //Releasing
    if(event.getAction()==MotionEvent.ACTION_UP){}
    //Moving
    if(event.getAction()==MotionEvent.ACTION_MOVE){}
    return false;
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

パネル (SurfaceView):

CanvasThread canvasthread;
public static Panel p;

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width,int height) {
}


@Override
public void surfaceCreated(SurfaceHolder holder) {
    canvasthread.setRunning(true);
    canvasthread.start();
}


@Override
public void surfaceDestroyed(SurfaceHolder holder) {
        boolean retry = true;
        canvasthread.setRunning(false);
        while (retry) {
                try {
                        canvasthread.join();
                        retry = false;
                } catch (InterruptedException e) {}
        }

}


public Panel(Context context, AttributeSet attrs) {
    super(context, attrs);
    getHolder().addCallback(this);
    canvasthread = new CanvasThread(getHolder(), this);
    setFocusable(true);
    p = this;
}


public void onDraw(Canvas canvas, Bitmap img, int x, int y) {
    Paint paint = new Paint();
    canvas.drawBitmap(img, x, y, null);
}

public void setBlack(Canvas canvas){
    canvas.drawColor(Color.BLACK);
}


//-----------Image Management----------------------
public Bitmap chest = BitmapFactory.decodeResource(getResources(), R.drawable.chest);
public Bitmap stairs = BitmapFactory.decodeResource(getResources(), R.drawable.stairs);
public Bitmap[][] blueBird = doubleCrop(BitmapFactory.decodeResource(getResources(), R.drawable.bluebird), 4, 2);
public Bitmap[] tileset = cropIt(BitmapFactory.decodeResource(getResources(), R.drawable.tileset), 10);

public Bitmap[] cropIt(Bitmap set, int length){
    int width = set.getWidth()/length;
    int height = set.getHeight();
    Bitmap[] array = new Bitmap[length];
    for(int c=0; c<length; c++){
        array[c] = Bitmap.createBitmap(set, c*width, 0, width, height);
    }
    return array;
}

public Bitmap[][] doubleCrop(Bitmap set, int yLength, int xLength){
    int width = set.getWidth()/xLength;
    int height = set.getHeight()/yLength;
    Bitmap[][] array = new Bitmap[yLength][xLength];
    for(int cy=0; cy<yLength; cy++){
        for(int cx=0; cx<xLength; cx++){
            array[cy][cx] = Bitmap.createBitmap(set, cx*width, cy*height, width, height);
        }
    }
    return array;
}

キャンバス スレッド:

    _surfaceHolder = surfaceHolder;
    _panel = panel;
    scene = new Scene(_panel);
}

public void setRunning(boolean run) {
    _run = run;
}

@Override
public void run() {
    Canvas c;
    while (_run) {
        try{Thread.sleep(FRAMEWAIT);}catch(Exception ex){}
        c = null;
        try {
            c = _surfaceHolder.lockCanvas(null);
            synchronized (_surfaceHolder) {
                scene.circle(_panel, c);
            }
        } finally {
            if (c != null) {
                _surfaceHolder.unlockCanvasAndPost(c);
            }
        }
    }
}

いくつかのアドバイスは大歓迎です。

既にありがとうございます。

4

1 に答える 1

0

onTouchListener を Panel のコンストラクターに直接宣言できます。

public class Panel extends SurfaceView{
      Panel(final Context context, AttributeSet attrs){

          setOnTouchListener(new View.OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                //put your logics here
            }
          }   
      }
}

また、CanvasThread は Panel 上の描画のみを処理するため、Panel 以外は CanvasThread について知っているべきではないと思います。

ちなみに、あなたの例では、ActivityのonTouchメソッドに設定return falseするだけです。return true問題を解決する必要があると思います。

@Override
public boolean onTouch (View v, MotionEvent event){
    //....
    return true; //not false
}
于 2012-09-09T14:02:43.317 に答える