本文主要是介绍暗码 手机拨号启动隐藏应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
android更改暗码在Contact应用程序下的SpecialCharSequenceMgr.java下的
static boolean handleSecretCode(Context context, String input) {// Secret codes are in the form *#*#<code>#*#*int len = input.length();if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) {Intent intent = new Intent(Intents.SECRET_CODE_ACTION,Uri.parse("android_secret_code://" + input.substring(4, len - 4)));context.sendBroadcast(intent);return true;}else if (input.equals("*998#")){
这篇关于暗码 手机拨号启动隐藏应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!