我已經看到了如何在API中使用隱藏方法?
/** @hide */
public void setDiscoverableTimeout(int timeout) {
if (getState() != STATE_ON) return;
try {
mService.setDiscoverableTimeout(timeout);
} catch (RemoteException e) {Log.e(TAG, "", e);}
}
我想用上面的方法,但仍然不知道,我怎麼能在我的程序使用此方法,使我的應用程序也應該會常常發現模式的一些隱藏的方法呢?
也許這個博客是有幫助的: [http://blog.codetastrophe.com/2008/12/accessing-hidden-system-service-apis-in.html](http://blog.codetastrophe.com/ 2008/12/access-hidden-system-service-apis-in.html) – accuya