来自广播的Android Intent广播

时间:2012-12-19 09:27:48

标签: android android-intent

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

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>

谢谢, 亚历

0 个答案:

没有答案