Android:Receiver未被调用且Service未启动

时间:2012-03-14 17:04:39

标签: android

我正在开发我的第一个Android服务,我希望它在操作系统启动时启动。我在代码中放了一些打印输出来检测并确保调用Receiver / Service。好吧,我没有在logcat中看到它。这是代码,我想我做的一切都正确吗?或不?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.denniss"
          android:versionCode="1"
          android:versionName="1.0">
    <application android:label="@string/app_name">
        <activity android:name="Main"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <service android:process=":random_number_background"
                 android:name=".RandomNumberService"
                 android:label="Random Number Service"/>
        <receiver android:name="RandomNumberBroadcastReceiver"
                  android:process=":random_number_background">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
            </intent-filter>
        </receiver>
    </application>
</manifest> 

应该生成随机数的服务=)

package com.denniss;

    import android.app.Service;
    import android.content.Intent;
    import android.os.IBinder;

    public class RandomNumberService extends Service{

        @Override
        public void onCreate() {
            super.onCreate();
        }

        @Override
        public IBinder onBind(Intent intent) {
            return null;
        }

        @Override
        public void onDestroy() {
            super.onDestroy();
        }
    }

广播接收器

package com.denniss;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class RandomNumberBroadcastReceiver extends BroadcastReceiver{
    @Override
    public void onReceive(Context context, Intent intent) {
        System.out.println("**************************************************");
        System.out.println("RandomNumberBroadcastReceiver onReceive is called!");
        context.startService(new Intent(context, RandomNumberService.class));
    }
}

2 个答案:

答案 0 :(得分:4)

您是否在清单中添加了所需的权限:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

答案 1 :(得分:2)

a)您的AndroidManifest.xml必须包含

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

b)如果您的应用在Honeycomb(Android 3.1.x)或更高版本上运行,您的应用必须已启动一次。否则,您的应用程序将被视为无效,并且不会接收任何广播。