所以这是设置..我有两个应用程序AppReceiver.apk和AppClient.apk。 AppReceiver项目只有一个接收器而没有其他活动,AppClient只发送广播消息。这适用于我的Mac上的Android 4.0 api 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笔记本电脑,在那一台上它不会显示此消息模拟器也是。所以我不确定发生了什么?有什么指针吗?
答案 0 :(得分:0)
所以我确认我必须在安装后至少启动一次AppReceiver.apk,这是Android 3.1之后的新要求或安全事项,因为他们希望用户明确启动应用程序以便使用其广播接收器。 / p>
由于我不想要任何GUI的东西,我所做的只是写了一个不调用任何视图的活动,并将主题定义为 android:theme =“@ android:style / Theme.NoDisplay”< / strong>在清单中,因此用户在安装后不会注意到应用程序已经启动且接收器也可用。感谢@Nitin Sethi指出我正确的方向。
public class MyActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
}
}
以下是AppReceiver.apk的新清单的外观
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.appreceiver.MyActivity" android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.appreceiver.MyReceiver">
<intent-filter>
<action android:name="com.appreceiver.CUSTOM_INTENT"></action>
</intent-filter>
</receiver>
</application>