0

これは私のコードです:

public class ViewSecond extends View implements View.OnTouchListener{

private Context context;
private Rect tailleEcran;
private Vibrator vibrator;

private Paint paint;
private Paint monPerso = new Paint();
private Paint flecheHaut = new Paint();
private Paint flecheBas = new Paint();
private Paint flecheGauche = new Paint();
private Paint flecheDroite = new Paint();

private Bitmap bmp, bmpFlecheHaut, bmpFlecheBas, bmpFlecheGauche, bmpFlecheDroite;

private Carte carteActuelle;

public ViewSecond(Context context) {
    super(context);
    this.context = context;
    this.vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
    this.tailleEcran = getWindowSize();

    this.paint = new Paint();
    this.paint.setAntiAlias(true);
    this.paint.setStyle(Paint.Style.FILL);

    // ON S'OCCUPE DU PERSO PRINCIPAL
    monPerso.setColor(Color.RED);
    monPerso.setAntiAlias(false);
    // ON S'OCCUPE DE LA CARTE
    this.carteActuelle = new Carte(1,1,"lol");
    // ON S'OCCUPE DES FLECHES DIRECTIONNEL
    this.flecheHaut   = new Paint();
    this.flecheBas    = new Paint();
    this.flecheGauche = new Paint();
    this.flecheDroite = new Paint();
    bmp             = BitmapFactory.decodeResource(getResources(),R.drawable.flechehaut);
    bmpFlecheHaut   = Bitmap.createScaledBitmap(bmp,(int)(tailleEcran.exactCenterX()*2)/8,(int)(tailleEcran.exactCenterY()*2)/8,false);
    bmp             = BitmapFactory.decodeResource(getResources(),R.drawable.flechebas);
    bmpFlecheBas    = Bitmap.createScaledBitmap(bmp,(int)(tailleEcran.exactCenterX()*2)/8,(int)(tailleEcran.exactCenterY()*2)/8,false);
    bmp             = BitmapFactory.decodeResource(getResources(),R.drawable.flechegauche);
    bmpFlecheGauche = Bitmap.createScaledBitmap(bmp,(int)(tailleEcran.exactCenterX()*2)/8,(int)(tailleEcran.exactCenterY()*2)/8,false);
    bmp             = BitmapFactory.decodeResource(getResources(),R.drawable.flechedroite);
    bmpFlecheDroite = Bitmap.createScaledBitmap(bmp,(int)(tailleEcran.exactCenterX()*2)/8,(int)(tailleEcran.exactCenterY()*2)/8,false);

}

public boolean onTouch(View v, MotionEvent event) {
    float x = event.getX();
    float y = event.getY();
    if(((x>100) && (x<550)) && ((y>100) && (y<550))){
        this.vibrator.vibrate(500);
    }
    this.invalidate();
    return false;
}

public void onClick(View v) {
    this.paint.setColor(Color.RED);
    this.invalidate();
}

protected void onDraw(Canvas canvas){
    canvas.drawColor(Color.BLACK);
    canvas.drawCircle(10, 10, 10, monPerso);
    canvas.drawBitmap(bmpFlecheHaut,(int)((tailleEcran.exactCenterX()*2)/8)+10,(int)((tailleEcran.exactCenterY()*2)-(((tailleEcran.exactCenterY()*2)/8)*2)-10),null);
    canvas.drawBitmap(bmpFlecheBas,(int)((tailleEcran.exactCenterX()*2)/8)+10,(int)((tailleEcran.exactCenterY()*2)-(tailleEcran.exactCenterY()*2)/8),null);
    canvas.drawBitmap(bmpFlecheGauche,0,(int)((tailleEcran.exactCenterY()*2)-(tailleEcran.exactCenterY()*2)/5.5),null);
    canvas.drawBitmap(bmpFlecheDroite,(int)((tailleEcran.exactCenterX()*2)/4)+20,(int)((tailleEcran.exactCenterY()*2)-(tailleEcran.exactCenterY()*2)/5.5),null);
}

// CETTE FONCTION RENVOIE UN RECTANGE DE LA TAILLE DE L'ECRAN
Rect getWindowSize() {
    Rect r = new Rect();
    WindowManager wm = (WindowManager) getContext().getSystemService(Context.WINDOW_SERVICE);
    Display display = wm.getDefaultDisplay();
    display.getRectSize(r);
    return r;
}}

ユーザーが画面に触れていることを検出しようとしていますが、機能していません。こことアクティビティに (onTouch メソッド) を配置しようとしましたが、何もしませんでした:/ 何か考えはありますか? 私の drawImages が見えますか? 最後に、この画像のクリックを検出する必要があります。Thx:D

4

2 に答える 2

2

public boolean onTouch(View v, MotionEvent event) をオーバーライドしたい場合はこんにちは。コントロール全体を処理したい場合は false を返し、それ以外の場合は true を返します。false を返す場合は、更新して true を返すようにしてください。たとえば、以下のビューの onTouch メソッドを参照してください。

public boolean onTouch(View view, MotionEvent event) {
    final int X = (int) event.getRawX();
    final int Y = (int) event.getRawY();
    switch (event.getAction() & MotionEvent.ACTION_MASK) {
        case MotionEvent.ACTION_DOWN:
            break; 
        case MotionEvent.ACTION_UP:
            break; 
        case MotionEvent.ACTION_POINTER_DOWN:
            break; 
        case MotionEvent.ACTION_POINTER_UP:
            break; 
        case MotionEvent.ACTION_MOVE:
            break; 
    } 
    _root.invalidate();
    return true; 
}} 

それが真を返すのを見てください。ありがとうございました。

于 2015-04-03T06:24:52.303 に答える
0

onTouchEvent()simple の代わりに使用して、その中でonTouch()返す必要trueがあります。返される場合trueは、タッチ イベントを消費し、それ以上イベントを処理する必要がないことを Android に伝えていることを意味します。

public boolean onTouchEvent(MotionEvent event) {
    float x = event.getX();
    float y = event.getY();
    if(((x>100) && (x<550)) && ((y>100) && (y<550))){
        this.vibrator.vibrate(500);
    }
    this.invalidate();
    return true;
}
于 2015-04-03T06:27:24.993 に答える