5

我是 Android 编程新手。我有一个在启动时启动服务的接收器,但它似乎从未启动。你能告诉我我做错了什么吗?我不知道如何调试它。您能解释一下如何调试 Android 启动服务吗?

这是我的代码。先感谢您

Recibidor.java:

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;

public class Recibidor extends BroadcastReceiver {

   @Override
   public void onReceive(Context context, Intent intent) {
      Toast.makeText(context, "Iniciando Recibidor", Toast.LENGTH_LONG).show();
      final String TAG = "Recibidor";
      Log.i(TAG, "Iniciando Recibidor");

      if (intent.getAction().equalsIgnoreCase("android.intent.action.BOOT_COMPLETED")) {
         Toast.makeText(context, "Iniciando Intent", Toast.LENGTH_LONG).show();
         Log.i(TAG, "Iniciando Intent");

         Intent servicio = new Intent();
         servicio.setAction("com.pruebas.Servicio");
         context.startService(servicio);

         Log.i(TAG, "Iniciando Servicio");
         Toast.makeText(context, "Iniciando Servicio", Toast.LENGTH_LONG).show();
       }

   }
}

Servicio.java

package com.pruebas;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

public class Servicio extends Service {
   private final String TAG = "Servicio";


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

   @Override
   public void onCreate() {
      super.onCreate();
      Log.i(TAG, "ON CREATE");
      Toast.makeText(this, "ON CREATE", Toast.LENGTH_LONG).show();
   }

   @Override
   public void onDestroy() {
      super.onDestroy();
      Log.i(TAG, "ON DESTROY");
      Toast.makeText(this, "ON DESTROY", Toast.LENGTH_LONG).show();
   }

   @Override
   public int onStartCommand(Intent intent, int flags, int startId) {
      startForeground(0, null);
      Log.i(TAG, "ON START COMMAND");
      Toast.makeText(this, "ON START COMMAND", Toast.LENGTH_LONG).show();
      return START_STICKY;
   }
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.pruebas"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="internalOnly" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

   <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <application>
        <service android:name=".Servicio">
            <intent-filter>
                <action android:name="com.pruebas.Servicio"/>
            </intent-filter>
        </service> 

        <receiver android:name=".Recibidor" android:enabled="true" android:exported="true" 
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </receiver>

    </application>

</manifest>
4

3 回答 3

4

您发布的代码将永远无法在更高版本的 Android 上运行。为了防止恶意软件,在更高版本的 Android 中,无法BroadcastReceiver在清单中自动注册 a,直到用户从应用启动器手动启动您的应用。

您将需要Activity使用 MAIN/LAUNCHER<intent-filter>条目创建一个。一旦用户手动启动应用程序一次,您的清单注册BroadcastReceiver就会发生,并且它将保持注册状态,除非用户使用“设置”的“管理应用程序”部分中的“强制停止”。

于 2013-03-25T08:59:32.967 回答
1

应用程序需要安装在内部存储中才能接收 BOOT_COMPLETED 意图。看到这个问题:我的 BroadcastReceiver 在我的 N1 启动后没有收到 BOOT_COMPLETED 意图。请帮忙!

于 2013-03-25T08:30:33.870 回答
0

尝试移动

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

超出“接收者”标签。

http://developer.android.com/guide/topics/manifest/manifest-intro.html#perms

于 2013-03-25T08:34:26.967 回答