2

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

我的服务类:

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;
}
}

我的广播接收器类:

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>

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

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

谢谢

4

1 回答 1

1

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

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

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

于 2012-12-28T03:23:55.737 回答