1

私は簡単なサービスを持っていますが、どちらLoglogcat

public class MyService extends Service {

    @Override
    public void onCreate() {
        // TODO Auto-generated method stub
        super.onCreate();
        Log.d("ID", "Y");
    }

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

    @Override
    public void onStart(Intent intent, int startId) {
        // TODO Auto-generated method stub
        super.onStart(intent, startId);
        Log.d("S", "Y");
    }

    @Override
    public void onDestroy() {
        // TODO Auto-generated method stub
        super.onDestroy();
    }
}

私はそのサービスを次のように呼びます:

Intent service = new Intent(this, MyService.class);
        startService(service);

主なものは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.servicetutorials"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.servicetutorials.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>

        <service
            android:name=".MyService"
            android:icon="@drawable/ic_launcher"
            android:label="label" >
        </service>
    </application>

</manifest>

私は何を間違っていますか?

4

1 に答える 1

10

A) サービスにはないと思いますandroid:icon="@drawable/ic_launcher"
B) サービス onClickListener を開始している場合はC)表示され
startService(new Intent(Activity.this, MyService.class));
ていることを確認してください D) AndroidManifest.xml サービス宣言logcatLog.d

 <service
        android:name="com.example.servicetutorials.MyService"
        android:enabled="true"/>            
    </service>

私はそれが動作するはずだと思います

ここに詳しく書かれています

サービスにはアイコンはまったく必要ありません

于 2013-06-01T21:21:20.323 に答える