0

我已经尝试过发布的解决方案

在 Android 上以编程方式输入 *#*#4636#*#* 之类 的密码作为我的密码 #*# 0011# #* like

Intent intent = new Intent(Intent.ACTION_DIAL);    
intent.setData(Uri.parse("tel:*#*#0011#*#*"));
startActivity(intent); 

这不起作用!

还写:-

<action android:name="android.provider.Telephony.SECRET_CODE"/> 
<data android:scheme="android_secret_code" android:host="0011" />

在清单中也不起作用

不幸的是,上述解决方案没有提供任何结果并坚持拨号屏幕。我有什么遗漏吗?

4

1 回答 1

0

如果您查看您提到的帖子中的答案,您会注意到您没有使用 Intent.ACTION_DIAL,但是:

Intent in = new Intent(Intent.ACTION_MAIN);
in.setClassName("com.android.settings", "com.android.settings.TestingSettings");
startActivity(in);
于 2013-05-26T13:03:46.287 回答