SECRET_CODE 从代码 Android 设置
SECRET_CODE set from code Android
我知道如何使用 Manifest 文件中的秘密代码,它与此源代码配合使用效果很好:
<receiver android:name="receivers.SecretCodeReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data
android:host="666"
android:scheme="android_secret_code" />
</intent-filter>
</receiver>
但是,我如何从源代码更改主机?可能吗 ?我试过这个:
sendBroadcast(new Intent("android.provider.Telephony.SECRET_CODE", Uri.parse("android_secret_code://"+code)));
但运气不好。
修改Manifest.xml文件
<receiver android:name="receivers.SecretCodeReceiver">
<intent-filter >
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data android:scheme="android_secret_code" />
</intent-filter>
</receiver>
并修改您的广播接收器class
if(intent.getAction().equals("android.provider.Telephony.SECRET_CODE")) {
String uri = intent.getDataString();
String[] sep = uri.split("://");
if (sep[1].equalsIgnoreCase("1234")) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage("com.whatsapp");
context.startActivity(launchIntent);
} else if (sep[1].equalsIgnoreCase("5678")) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage("net.one97.paytm");
context.startActivity(launchIntent);
}
}
现在从拨号器拨打号码*#*#NUMBER#*#*
例如*#*#1234#*#*
启动 whatsapp
我知道如何使用 Manifest 文件中的秘密代码,它与此源代码配合使用效果很好:
<receiver android:name="receivers.SecretCodeReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data
android:host="666"
android:scheme="android_secret_code" />
</intent-filter>
</receiver>
但是,我如何从源代码更改主机?可能吗 ?我试过这个:
sendBroadcast(new Intent("android.provider.Telephony.SECRET_CODE", Uri.parse("android_secret_code://"+code)));
但运气不好。
修改Manifest.xml文件
<receiver android:name="receivers.SecretCodeReceiver">
<intent-filter >
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data android:scheme="android_secret_code" />
</intent-filter>
</receiver>
并修改您的广播接收器class
if(intent.getAction().equals("android.provider.Telephony.SECRET_CODE")) {
String uri = intent.getDataString();
String[] sep = uri.split("://");
if (sep[1].equalsIgnoreCase("1234")) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage("com.whatsapp");
context.startActivity(launchIntent);
} else if (sep[1].equalsIgnoreCase("5678")) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage("net.one97.paytm");
context.startActivity(launchIntent);
}
}
现在从拨号器拨打号码*#*#NUMBER#*#*
例如*#*#1234#*#*
启动 whatsapp