Android服务变红了

时间:2015-03-20 13:09:12

标签: java android intentservice

我想在我的清单中添加一项服务,但它会发出警告。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.aura_apps.tygo_asbroek.intentexample" >

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".SecondActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    <service
        android:name=".TygoIntentService"
    >
    </service>
</application>

这是Java代码:

package com.aura_apps.tygo_asbroek.intentexample;

public class TygoIntentService extends IntentService {

    private static final String TAG = "com.bluelionapps.intentexample";

    public TygoIntentService(String name) {
        super("TygoIntentService");
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        //This is what the service does
        Toast toast = Toast.makeText(getApplicationContext(), "Service Lauched", Toast.LENGTH_SHORT);
        toast.show();
    }
}

在这里,您会看到我的完整清单,但.TygoIntentServiceTygoIntentService.java没有我应用的默认构造函数。如果我运行它,它只是工作,但我想知道这是否会在将来出现任何问题,如果它给我一个我需要做的。

2 个答案:

答案 0 :(得分:1)

从构造函数中删除String name参数:

public TygoIntentService() {
    super("TygoIntentService");
}

答案 1 :(得分:0)

如果您不使用/需要名称String,只需删除构造函数,并让编译器默认将它添加到场景后面。