4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Android振動のさせ方

Last updated at Posted at 2022-03-27

今回はAndroidの実装で振動をさせることになったので、やり方を残しておこうと思います。

※こちらAPI level 26以上 API level 31未満のやり方です。
API level 31ではDeprecatedになっており、VibratorManagerを使用します。

Manifestの設定

AndroidManifest.xmlでVIBRATEの許可します。

AndroidManifest.xml
<uses-permission android:name="android.permission.VIBRATE"/>

Activity

MainActivity.kt
 val vibrator = getSystemService(Context.VIBRATOR_SERVICE) as Vibrator
 val vibrationEffect = VibrationEffect.createOneShot(500, 200)
 vibrator.vibrate(vibrationEffect)

これで振動できます。
createOneShotで振動の設定をします。
第一引数は振動するミリ秒数。これは正の数でなければなりません。
第二引数は振動の強さ。これは、1〜255、またはの値である必要があります。

また今度API level 31のやり方を調べて記事にしてみようと思います。

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?