我有两个方法,一个是shake-Listener,另一个是刷卡检测器。 使用onResume()只有shake-Listener工作正常。
我不知道如何在onResume()中调用Swipe Detector。
我的扫描检测器代码。
@Override
protected void onResume() {
// TODO Auto-generated method stub
// getWindow().getDecorView().setSystemUiVisibility(View.GONE);
super.onResume();
Log.d("overheardword", "onResume Invoked");
//swipedetector.onFling(e1, e2, velocityX, velocityY,View.OnTouchListener);
mSensorManager.registerListener(mShakeDetector, mAccelerometer, SensorManager.SENSOR_DELAY_UI);
getWindow().getDecorView().setSystemUiVisibility(View.GONE);
}
任何人都可以告诉我如何使用onresume()继续刷卡检测器?
OnResume()方法
prePersist