概述
IntentService也是Service的子类,它比普通Service增加了额外的功能:
- IntentService会创建单独的work线程来处理所有的Intent请求。
- IntentService会创建单独的work线程来处理onHandleIntent()方法实现的代码,因此开发者无需处理多线程的问题。
- 当所有请求处理完成时,IntentService会自动停止。
- 无需重写onBind().onStartCommand()方法,只要重写onHandleIntent()即可
java代码
activity:
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity {
Intent intentService;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
intentService = new Intent(this, MyIntentService.class);
}
public void intentService(View v){
Toast.makeText(this, "intentServiceStart", Toast.LENGTH_SHORT).show();
startService(intentService);
}
}
IntentService:
import android.app.IntentService;
import android.content.Intent;
import android.util.Log;
public class MyIntentService extends IntentService {
public MyIntentService() {
super("name");
}
@Override
protected void onHandleIntent(Intent intent) {
long endTime=System.currentTimeMillis()+20*1000;
while(System.currentTimeMillis()<endTime){
synchronized(this){
try {
wait(endTime-System.currentTimeMillis());
} catch (InterruptedException e) {
e.printStackTrace();
}
Log.v("sssssy","耗时任务执行完成");
}
}
}
}
总结
synchronized(),并发,同步的意思。
当它用来修饰一个方法或者一个代码块的时候,能够保证在同一时刻最多只有一个线程执行该段代码。
参考自:http://www.cnblogs.com/GnagWang/archive/2011/02/27/1966606.html