检查手机设置中的触觉反馈

发布于 2024-12-22 04:02:14 字数 384 浏览 3 评论 0原文

有没有办法检查用户是否在 Android 手机设置中启用或禁用了触觉反馈?虽然我认为触觉反馈对我的应用程序很有用,但我也了解有些人(包括我自己)通常更喜欢关闭触觉反馈。我能找到的最接近的是 http://developer.android.com/reference/android/provider /Settings.System.html#HAPTIC_FEEDBACK_ENABLED 但我不确定这是否是我正在寻找的或如何对其进行测试。

预先感谢您提供的任何帮助。

Is there a way to check if the user has haptic feedback enabled or disabled in their android phone settings? While I think haptic feedback would be useful to my app, I also understand that some people (myself included) generally prefer to have haptic feedback turned off. The closest thing I can find is
http://developer.android.com/reference/android/provider/Settings.System.html#HAPTIC_FEEDBACK_ENABLED
but I'm not sure if it's what I'm looking for or how to test against it.

thank you in advance for whatever help you can provide.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Oo萌小芽oO 2024-12-29 04:02:14

我设法解决了它。这是我使用的代码:

mContentResolver = this.getContentResolver();

int val = Settings.System.getInt(mContentResolver,
                 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0);
mSettingEnabled = val != 0;

I managed to resolve it. here is the code I used:

mContentResolver = this.getContentResolver();

int val = Settings.System.getInt(mContentResolver,
                 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0);
mSettingEnabled = val != 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文