如何使用API​​中的隐藏方法?

发布于 2024-11-26 12:55:10 字数 320 浏览 1 评论 0原文

我在我想使用上述方法中看到了一些隐藏方法

/** @hide */
public void setDiscoverableTimeout(int timeout) {
    if (getState() != STATE_ON) return;
    try {
        mService.setDiscoverableTimeout(timeout);
    } catch (RemoteException e) {Log.e(TAG, "", e);}
}

,但仍然不知道如何在我的程序中使用此方法,以便我的应用程序应始终处于可发现模式?

I have seen some hide methods in

/** @hide */
public void setDiscoverableTimeout(int timeout) {
    if (getState() != STATE_ON) return;
    try {
        mService.setDiscoverableTimeout(timeout);
    } catch (RemoteException e) {Log.e(TAG, "", e);}
}

I want to use the above method but still not aware that how can I use this method in my program so that my app should be always in discoverable mode?

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

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

发布评论

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

评论(1

Oo萌小芽oO 2024-12-03 12:55:10

你可以使用反射,我一直在使用它。唯一的缺点是谷歌可能不提供任何保证。

you can use reflections, i have been using it. The only flip side is it may be google doesn't provide any guarantee for it.

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