是否有直接启动开发人员设置的实际方法?

时间:2017-11-17 06:39:20

标签: android

我检查了official settings page on the developer website,我检查了谷歌,似乎无法以编程方式启动Android开发人员设置。应用like this如何做到这一点?

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码:

startActivityForResult(new Intent(android.provider.Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS), 0);

有关更多设置操作,您可以通过documentation hereparticular here