gpt4 book ai didi

android - 如何获取Android设备的默认振动模式?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:58:39 29 4
gpt4 key购买 nike

我正在为 Android API 23 创建一个应用程序,我想获取手机响铃时使用的默认振动模式?

到目前为止我有这个:

Vibrator vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
long[] pattern = {0, 500, 1000}; // default pattern goes here
vibrator.vibrate(pattern, 0);

如何获取默认模式?

最佳答案

可以在以下类中找到默认振动模式:com/android/server/notification/NotificationManagerService.java,即

static final long[] DEFAULT_VIBRATE_PATTERN = {0, 250, 250, 250};

请参阅 here 中的源代码.

遗憾的是,到目前为止还没有公共(public) API 来获取此默认模式。

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

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