gpt4 book ai didi

android - 如何振动 Android 中的系统默认模式?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:05:56 25 4
gpt4 key购买 nike

我知道振动类以及如何使用它,但是我在哪里可以得到要使用的系统默认振动模式?还是我可以启动某种 Intent 让系统振动其默认振动?

最佳答案

创建一个重现默认振动的方法并在每次选择时调用它。

import android.os.Vibrator;

private void vibrate(){
Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(1000);
}

AndroidManifest.xml 文件中所需的权限:

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

关于android - 如何振动 Android 中的系统默认模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18965268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com