如何使用API中的隐藏方法?
我在我想使用上述方法中看到了一些隐藏方法
/** @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用反射,我一直在使用它。唯一的缺点是谷歌可能不提供任何保证。
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.