我已经尝试过发布的解决方案
在 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" />
在清单中也不起作用
不幸的是,上述解决方案没有提供任何结果并坚持拨号屏幕。我有什么遗漏吗?