0

所以这里是设置.. 我有两个应用 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 笔记本电脑,在该笔记本电脑上它也不会在模拟器上显示此消息。所以我不确定发生了什么?任何指针?

4

1 回答 1

0

因此,我确认我必须在安装后至少启动一次 AppReceiver.apk,这是 Android 3.1 之后的新要求或安全事项,因为他们希望用户显式启动应用程序以使用其广播接收器。

由于我不想要任何 GUI 的东西,我所做的只是编写了一个不调用任何视图的活动,并将主题定义为清单中的android:theme="@android:style/Theme.NoDisplay"以便用户不会t 安装后注意到应用程序已经启动并且接收器也可用。感谢@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>
于 2013-09-13T17:00:11.230 回答