我在我的 android 应用程序中单击按钮时运行它:
public void vibrateold() {
Vibrator vibrate = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
vibrate.vibrate(4000);
}
但是在4秒前离开活动时振动并没有停止。我应该如何停止它?
我在我的 android 应用程序中单击按钮时运行它:
public void vibrateold() {
Vibrator vibrate = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
vibrate.vibrate(4000);
}
但是在4秒前离开活动时振动并没有停止。我应该如何停止它?
振动器方法取消()怎么样?
Vibrator.cancel();
例如:(在 onCreate() 中初始化并开始振动——如果 Activity 在 10 秒的振动用完之前被破坏或暂停,则停止振动)
Vibrator vibrator;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
vibrator.vibrate(10000);
}
@Override
public void onPause() {
vibrator.cancel(); // cancel for example here
}
@Override
public void onDestroy() {
vibrator.cancel(); // or cancel here
}