2

任何人都可以帮助使用此代码:

Intent localIntent = new Intent("android.intent.action.MULTI_MODE_CHANGED ");
localIntent.putExtra("MULTI_MODE", paramString);
mContext.sendBroadcast(localIntent);

我试图了解如何从 shell 广播中广播相同的意图。 mContext在开始时设置为 null 但在onCreate函数上显示: mContext = this;

这是在AndroidManifest.xml

<receiver android:name="HiddenmenuBroadcastReceiver">
    <intent-filter>
        <action android:name="android.provider.Telephony.SECRET_CODE"/>
        <data android:host="LTEMODE" android:scheme="android_secret_code"/>
    </intent-filter>
</receiver>

谢谢,亚历克斯

4

0 回答 0