About Android: how to use Log to gain the position (x,y) when I use the onTouchEvent()?

StackOverflow https://stackoverflow.com/questions/6825269

  •  26-10-2019
  •  | 
  •  

سؤال

Here is My Code:

 public boolean onTouchEvent(MotionEvent cv){

    int x=(int)cv.getX();
    int y=(int)cv.getY();

    // here I want to use Log to gain the position(x,y) that I touched.But how?

    if( 0<=y && y<=py ){
        if( (px-(py-y)*Math.tan(30))<=x && x<=(px+(py-y)*Math.tan(30)) ){
            Log.i(VIEW_LOG_TAG, "yes");
        }
    }

    if( px<=x && x<=(px+py*Math.tan(15)) ){
        if( y<=(Math.tan(15)*(px-x)+py) ){

            Log.i(VIEW_LOG_TAG, "no");
        }
    }

    return super.onTouchEvent(cv);
}
هل كانت مفيدة؟

المحلول

Log as... android.util.Log ?, if so:

Just add:

Log.v(String TAG, String MSG);

Like:

int x=(int)cv.getX();
int y=(int)cv.getY();

// here I want to use Log to gain the position(x,y) that I touched.But how?
Log.v("X", "pos x = " + x);
Log.v("Y", "pos y = " + y);

if( 0<=y && y<=py ){
    if( (px-(py-y)*Math.tan(30))<=x && x<=(px+(py-y)*Math.tan(30)) ){
        Log.i(VIEW_LOG_TAG, "yes");
    }
}

if( px<=x && x<=(px+py*Math.tan(15)) ){
    if( y<=(Math.tan(15)*(px-x)+py) ){

        Log.i(VIEW_LOG_TAG, "no");
    }
}

return super.onTouchEvent(cv);
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top