1

私はこの許可を使用しました:

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

受信者は次のとおりです。

<receiver android:name=".auth.NotificationBroadcast" android:enabled="true" >
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
    </intent-filter>
</receiver>

コード内の受信者は次のとおりです。

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

        System.out.println("BroadcastReceiverBroadcast--------------------ReceiverBroadcastReceiverBroadcastReceiver----------------BroadcastReceiver");

        if (intent != null) {
            String action = intent.getAction();

        switch (action) {
            case Intent.ACTION_BOOT_COMPLETED:
                System.out.println("Called on REBOOT");
                // start a new service and repeat using alarm manager

                break;
            default:
                break;
        }
    }
}

再起動後、ロリポップではまだ呼び出されませんが、マシュマロでは実行されています。

4

2 に答える 2

1

この行をレシーバーのインテント フィルターに入れてみてください。

<action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE" />

アプリケーションが SD カードにインストールされている場合は、これを登録して android.intent.action.BOOT_COMPLETED イベントを取得する必要があります。

更新: アプリはアラーム サービスを使用しているため、外部ストレージにインストールしないでください。参照: http://developer.android.com/guide/topics/data/install-location.html

于 2016-09-18T17:45:57.613 に答える
0

プラットフォームの起動が完了するたびに、android.intent.action.BOOT_COMPLETED アクションを含むインテントがブロードキャストされます。このインテントを受け取るには、アプリケーションを登録する必要があります。登録するには、これを AndroidManifest.xml に追加します

<receiver android:name=".ServiceManager">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
</receiver>

そのため、ServiceManager をブロードキャスト レシーバーとして使用して、ブート イベントのインテントを受信します。ServiceManager クラスは次のとおりです。

public class ServiceManager extends BroadcastReceiver {

    Context mContext;
    private final String BOOT_ACTION = "android.intent.action.BOOT_COMPLETED";

    @Override
    public void onReceive(Context context, Intent intent) {
                // All registered broadcasts are received by this
        mContext = context;
        String action = intent.getAction();
        if (action.equalsIgnoreCase(BOOT_ACTION)) {
                        //check for boot complete event & start your service
            startService();
        } 

    }


    private void startService() {
                //here, you will start your service
        Intent mServiceIntent = new Intent();
        mServiceIntent.setAction("com.bootservice.test.DataService");
        mContext.startService(mServiceIntent);
    }
}

サービスを開始しているので、AndroidManifest にも記載する必要があります。

<service android:name=".LocationService">
    <intent-filter>
        <action android:name="com.bootservice.test.DataService"/>
    </intent-filter>
</service>
于 2016-09-18T17:58:56.117 に答える