我弄乱了android网站上有关服务的示例。该服务旨在祝酒。我使用按钮的 onClick 方法启动服务。它有效,但吐司永无止境!我认为 IntentService 在过程完成后会特别停止。
import android.app.IntentService;
import android.content.Intent;
import android.widget.Toast;
public class Enslaved extends IntentService {
public Enslaved() {
super("Enslaved");
}
@Override
protected void onHandleIntent(Intent intent) {
Toast.makeText(this, "Starting service", Toast.LENGTH_SHORT).show();
}
}