应用程序启动时仅运行后台服务

时间:2012-12-28 03:13:54

标签: android android-activity

我想在我的应用程序启动时才开始启动服务。这是我的代码:

我的服务类:

public class MyService extends Service {
 @Override
  public int onStartCommand(Intent intent, int flags, int startId) {

     Log.i("LocalService", "Received start id " + startId + ": " + intent);

   // We want this service to continue running until it is explicitly
   // stopped, so return sticky.
   return START_STICKY;
  }

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    return null;
}
}

我的BroadcastReceiver类:

public class MyServiceReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Intent service = new Intent(context, MyService.class);
    context.startService(service);
}
}

我的AndroidManifest文件:

<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" >

    <service
      android:name=".MyService"
      android:label="@string/app_name"
      android:enabled="true"
      android:process=":my_process" >
    </service>

    <receiver 
        android:name=".MyServiceReceiver"
        android:enabled="true" >

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

</application>

我希望在应用程序启动(第一次安装)和设备启动时启动我的服务。

P.S。如果代码是正确的,也许我必须为eclipse“运行”按钮设置一个特定的配置?如果尝试创建新配置,我无法在“启动操作”中选择任何内容,因为我的应用程序没有活动,我必须选择“不执行任何操作”。

谢谢

1 个答案:

答案 0 :(得分:1)

如果您希望在启动应用程序后立即启动服务,则需要在onCreate内调用此服务的主要活动。在您的主要活动中,在您的onCreate中包含此代码。

startService(new Intent(Main_Activity.this,MyServiceReceiver.class));

这只是在您启动应用程序时调用您的服务。