@Override
public boolean onTouchEvent(MotionEvent event) {
if(event.getAction()==MotionEvent.ACTION_DOWN){
Log.d(VIEW_LOG_TAG, "Touching Down");
}
if(event.getAction()==MotionEvent.ACTION_UP){
Log.d(VIEW_LOG_TAG, "Not Touching");
}
}
I want Log-->"Touching Down" should be displayed in Log continuously until finger is released.
Please Help
Its Really Important...I cant Proceed further in ma Project without this.