35

こんにちは私はアプリケーションを書いています。それは電話が再起動すると、アプリケーションをクリックする代わりにサービスが自動的に開始されます。

これが私のコードです

BootCompleteReceiver.java

package com.example.newbootservice;

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

public class BootCompleteReceiver extends BroadcastReceiver {   

    @Override  
    public void onReceive(Context context, Intent intent) {  

        Intent service = new Intent(context, MsgPushService.class);  
        context.startService(service);   

    }  

}

MsgPushService.java

package com.example.newbootservice;

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

public class MsgPushService extends Service {  


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

    @Override  
    public int onStartCommand(Intent intent, int flags, int startId) {  

        Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
        return Service.START_STICKY;  
    }  

    @Override
    public void onDestroy() {

        super.onDestroy();
        Toast.makeText(this, "Service Destroy", Toast.LENGTH_LONG).show();
    }

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

MainActivity.java (これが必要かどうかわからない)

package com.example.newbootservice;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        startService(new Intent(getBaseContext(), MsgPushService.class));
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

マニフェスト

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.newbootservice"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <service android:name=".MsgPushService"/>

        <receiver android:name=".BootCompleteReceiver">  
            <intent-filter>     
                <action android:name="android.intent.action.BOOT_COMPLETED"/>  
                <category android:name="android.intent.category.DEFAULT" />  
            </intent-filter>  
        </receiver>

        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

手動で開始するのではなく、再起動後にサービスを自動的に開始したい。

4

5 に答える 5

53

最初にこれを行う

1)あなたの<manifest>要素で:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
于 2013-01-17T18:13:37.720 に答える
9

あなたは許可を忘れました

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
于 2013-01-17T18:12:56.350 に答える
8

上記のすべての答えは正しかったが、Android Oreoそれらからバックグラウンドサービスにいくつかの制限を課した。

Android Oのバックグラウンド制限について詳しくは、バックグラウンド実行制限を確認してください。

アプリケーションがバックグラウンドにある場合、BroadCastReceiverから直接サービスを開始することはできません。

ただし、JobIntentServiceにはそのような制限がないため、JobIntentServicestartForegroundService()を呼び出すか使用することにより、受信者からフォアグラウンドサービスを開始できます。

于 2018-03-08T10:22:42.563 に答える
2

BroadcastReceiverクラスで次のコードを使用します。

if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
   Intent service = new Intent(context, MsgPushService.class);  
    context.startService(service);  
  }
于 2018-12-24T05:07:29.393 に答える
0

また、これらのアクセス許可を試してください、それはあなたを助けるかもしれません。あなたがhtc電話を使用しているなら、これらのアクセス許可が必要です

<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
于 2015-03-24T13:49:54.383 に答える