我是靠谱客的博主 甜美板凳,最近开发中收集的这篇文章主要介绍拨号盘增加暗码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在Dialer下面有类:

SpecialCharSequenceMgrProxy.java

******************************************

 public static boolean handleChars(Context context, String input,
              EditText textField) {
          if (input.equals(MMI_FACOTRY_MODE)) {
              return enterFactoryMode(context);
          } else if ("*#55555#".equals(input) && isApkExist(context, "com.android.smsregister")) {
              Intent intent = new Intent();
              intent.setClassName("com.android.smsregister", "com.android.smsregister.TestSms");
              context.startActivity(intent);
             return true;
          } else if ("*#4634#".equals(input)) {
              Intent intent = new Intent();
              intent.setClassName("com.android.settings", "com.android.settings.WriteIMEIDialog");
              context.startActivity(intent);
              return true;
          } else if ("*#*#76#*#*".equals(input)) {
              showMotherBoardTestDialog(context);
          } else if (input.equals("*#11#")) {
              return enterAgingTest(context);
          } else if (input.equals("*#16#")) {
              return enterAgingTest(context);
          } else if ("*#999#".equals(input)) {
              Intent intent = new Intent();
             intent.setClassName("com.android.settings", "com.android.settings.ResetFactoryActivity");
             context.startActivity(intent);
             return true;
         } else if (input.equals("*#0000#")) {
             AlertDialog alert = new AlertDialog.Builder(context)
                 .setTitle("Build number")
                 .setMessage(SystemProperties.get("ro.build.display.id"))
                 .setPositiveButton(android.R.string.ok, null)
                 .setCancelable(false)
                 .show();
             return true;
         }


//该方法是进入工厂测试

static boolean enterAgingTest(Context context) {
         Intent i = new Intent(Intent.ACTION_MAIN);
         i.setComponent(new ComponentName("com.mediatek.factorymode",
                     "com.mediatek.factorymode.agingtest.AgingTestBegin"));
         i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
         context.startActivity(i);
         return true;
     }


********************************************


如上,设置input等于暗码即可。


最后

以上就是甜美板凳为你收集整理的拨号盘增加暗码的全部内容,希望文章能够帮你解决拨号盘增加暗码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部