0

バックグラウンドでサービスを開始しようとしています。ユーザーがチェックボックスをオンにすると、サービスが開始され、MyService クラスにある Toast が表示されます。しかし、サービスを開始した後、そのトーストを取得できません。以下のコードで何が間違っていますか?

私の主な活動

public class SampleServiceActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    final CheckBox cb = (CheckBox) findViewById(R.id.checkBox1);

    cb.setOnCheckedChangeListener(new OnCheckedChangeListener(){
        public void onCheckedChanged(CompoundButton buttonView,
                boolean isChecked) {

            if(isChecked) {
                Toast.makeText(getBaseContext(), "Checked", Toast.LENGTH_LONG).show();
                startService(new Intent(getBaseContext(), MyService.class));
            } else {
                Toast.makeText(getBaseContext(), "Unchecked", Toast.LENGTH_LONG).show();
                stopService(new Intent(getBaseContext(), MyService.class));
            }
        }

    });
}
}

私のサービスクラス

public class MyService extends Service {

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

public int onStartCommand(Intent intent, int flags, int startId) {
    Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
    return START_STICKY;
}

//method to stop service
public void onDestroy() {
    super.onDestroy();
    Toast.makeText(this, "Service Stopped", Toast.LENGTH_LONG).show();
}
}
4

1 に答える 1

1

MyServiceサービスをmanifest.soに登録していない可能性があります。次のように登録します。

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

    <application android:icon="@drawable/xxx" android:label="@string/app_name" >

        <activity> ... </activity>

        <service  android:name=".MyService " />

    </application>
</manifest>
于 2012-05-20T07:00:30.150 に答える