所以这里是设置.. 我有两个应用 AppReceiver.apk 和 AppClient.apk。AppReceiver 项目只有一个接收器,没有其他活动,AppClient 只发送广播消息。这适用于我的 Mac 上 Android 4.0 api level 14 的模拟器,但不适用于 Windows 或实际设备。
AppReceiver.apk 的代码 * MyReceiver.java *
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
Log.d("MyReceiver", "Got Message");
}
}
清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appreceiver"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="MyReceiver">
<intent-filter>
<action android:name="com.appreceiver.CUSTOM_INTENT"></action>
</intent-filter>
</receiver>
</application>
</manifest>
AppClient MainActivity.java的代码
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button sendButton = (Button)findViewById(R.id.sendbroadcastButton);
sendButton.setOnClickListener(new View.OnClickListener(){
public void onClick(View v)
{
Intent intent = new Intent();
intent.setAction("com.appreceiver.CUSTOM_INTENT");
sendBroadcast(intent);
}
});
}
清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appclient"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.appclient.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
因此,当我单击在 Mac 中运行的模拟器中的sendbroadcast 按钮时会发生这种情况,然后我看到日志消息 Log.d("MyReceiver", "Got Message"); 在我的 logcat 中,这意味着它按预期工作。我可以多次单击,它按预期工作。
但是,当我将它安装在设备上时,我没有在 logcat 中看到消息(我确保我正在从设备读取 logcat)另外我还有另一台 Windows 笔记本电脑,在该笔记本电脑上它也不会在模拟器上显示此消息。所以我不确定发生了什么?任何指针?