mirror of
https://gitee.com/51danju/workclock.git
synced 2025-09-04 20:34:40 +08:00
50 lines
1.1 KiB
Java
50 lines
1.1 KiB
Java
package clock.socoolby.com.clock;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Handler;
|
|
import android.os.Message;
|
|
import android.view.MotionEvent;
|
|
import android.view.View;
|
|
|
|
public class CountingActivity extends Activity implements Handler.Callback, View.OnClickListener, android.view.GestureDetector.OnGestureListener{
|
|
@Override
|
|
public boolean handleMessage(Message message) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onDown(MotionEvent motionEvent) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onShowPress(MotionEvent motionEvent) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public boolean onSingleTapUp(MotionEvent motionEvent) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onLongPress(MotionEvent motionEvent) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onClick(View view) {
|
|
|
|
}
|
|
}
|