android直接拨打暗码

Uri uri = Uri.parse("tel:" + "*#*#4636#*#*");//(注:xxxxx为电话号码)
Intent intent= new Intent(Intent.ACTION_DIAL, uri);   
startActivity(intent);

直接拨打电话需要iApp的v3会员正式打包之后才有效果,注意暗码的#代码不能直接识别需要转换才能直接拨打,下面是转换方法:

你可能感兴趣的:(android直接拨打暗码)