Skip to content

Instantly share code, notes, and snippets.

@mryp
Created May 17, 2015 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mryp/e0c4832b72fc944b619c to your computer and use it in GitHub Desktop.
Save mryp/e0c4832b72fc944b619c to your computer and use it in GitHub Desktop.
バイブレーション(Vibrator)
<uses-permission android:name="android.permission.VIBRATE" />
/**
* バイブレーションを振動させる
* @param activity 画面Activity
* @param millsec 振動させる時間(ミリ秒)
*/
private void vibrate(Activity activity, int millsec) {
Vibrator vib = (Vibrator)activity.getSystemService(Activity.VIBRATOR_SERVICE);
vib.vibrate(millsec);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment