Programmatically enter secret code like *#*#4636#*#* on Android

前端 未结 5 1026
南方客
南方客 2020-11-27 15:37

On many Android devices you can get into a secret settings menu from Phone app by typing in

*#*#4636#*#*

http://technology-headlines.com/2010/09/17/4636-and

5条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 15:57

    looking for this

    Intent intent = new Intent("android.intent.action.MAIN");
        intent.setClassName("com.android.settings", "com.android.settings.Settings$TestingSettingsActivity");
        startActivity(intent);
    

提交回复
热议问题