0

我想创建一个没有任何 UI 的应用程序,它应该作为服务应用程序工作。我在应用程序中使用了启动完成事件,当我在 2.3(姜饼)版本中运行应用程序时,它可以正常工作,但不能在 Jellybean 上工作版本。但是,如果我使用任何活动运行该应用程序,那么它在两个版本中都可以正常工作。请给我一个解决方案。

AndroidManifest 文件。

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

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

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

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

        <receiver android:name="com.home.BootReceiver.BootCompleteReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />             
            </intent-filter>
        </receiver>

    </application>

</manifest>

类文件。

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


public class BootCompleteReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent arg1) {
        try
        {
            Toast.makeText(context, "Mobile Boot Completed", Toast.LENGTH_LONG).show();
        }catch(Exception ex)
        {
            Toast.makeText(context, ex.getMessage(), Toast.LENGTH_LONG).show();
        }

    }

}
4

0 回答 0