Android中使用IntentService执行后台任务

IntentService提供了一种在后台线程中执行任务的方式,适合处理执行时间较长的后台任务。

优点:

(1)IntentService运行在单独的线程中,不会阻塞UI线程

(2)IntentService不受生命周期的影响

缺点:

(1)不能与UI直接进行交互,可以用Broadcast

(2)顺序执行请求,第二个请求只有在第一个请求执行完以后才能执行

(3)请求不能被中断

使用IntentService的步骤:

(1)在Activity中通过startService启动service,并传递参数。

(2)Service中接收参数,做耗时的处理,处理完毕,发送Broadcat,并把处理结果传递出来

(3)Activity中注册BroadcastReceiver,监听广播,更新UI。

看一个例子:

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		Button btn = (Button) this.findViewById(R.id.btn);
		btn.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {//通过startService启动service,并传递参数。
				Intent mServiceIntent = new Intent(MainActivity.this,RSSPullService.class);
				mServiceIntent.setData(Uri.parse("http://www.baidu.com/"));
				MainActivity.this.startService(mServiceIntent);
			}
		});
		//注册BroadcastReceiver,监听广播
		IntentFilter statusIntentFilter = new IntentFilter(Constants.BROADCAST_ACTION);
        // Sets the filter's category to DEFAULT
        statusIntentFilter.addCategory(Intent.CATEGORY_DEFAULT);
		DownloadStateReceiver mDownloadStateReceiver = new DownloadStateReceiver();
		// Registers the DownloadStateReceiver and its intent filters
		LocalBroadcastManager.getInstance(this).registerReceiver(mDownloadStateReceiver, statusIntentFilter);

	}

	private class DownloadStateReceiver extends BroadcastReceiver {
		@Override
		public void onReceive(Context context, Intent intent) {
			String data = intent.getStringExtra(Constants.EXTENDED_DATA);
			Log.e("test", data);
			Toast.makeText(context, data, Toast.LENGTH_SHORT).show();
		}
	}

}
public class RSSPullService extends IntentService {

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

	@Override
	protected void onHandleIntent(Intent workIntent) {//接收参数,做耗时的处理,处理完毕,发送Broadcat
		String localUrlString = workIntent.getDataString();
		String data = download(localUrlString);
		Intent localIntent = new Intent(Constants.BROADCAST_ACTION);
	    // Puts the status into the Intent
		localIntent.putExtra(Constants.EXTENDED_DATA, data);
	    // Broadcasts the Intent to receivers in this app.
	    LocalBroadcastManager.getInstance(this).sendBroadcast(localIntent);
	}

	private String download(String localUrlString){
		try{
			URL url = new URL(localUrlString);
			HttpURLConnection conn = (HttpURLConnection)url.openConnection();
			InputStream in = conn.getInputStream();
			ByteArrayOutputStream out = new ByteArrayOutputStream();
			byte[] buff = new byte[1024];
			int len = 0;
			while((len = in.read(buff)) != -1){
				out.write(buff,0,len);
			}
			in.close();
			return new String(out.toByteArray());
		}catch(Exception e){
			e.printStackTrace();
			return "";
		}
	}
}
public class Constants {

	// Defines a custom Intent action
	public static final String BROADCAST_ACTION = "com.example.android.threadsample.BROADCAST";

	// Defines the key for the status "extra" in an Intent
	public static final String EXTENDED_DATA_STATUS = "com.example.android.threadsample.STATUS";

	public static final String EXTENDED_DATA = "com.example.android.threadsample.DATA";

}

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.intentservicedemo"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <!-- Requires this permission to download RSS data from Picasa -->
    <uses-permission android:name="android.permission.INTERNET" />

    <!--
        Defines the application.
    -->
    <application
        android:icon="@drawable/icon"
        android:label="@string/app_name">

        <activity
            android:name="com.example.android.intentservicedemo.MainActivity"
            android:label="@string/activity_title" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <!--
            No intent filters are specified, so android:exported defaults to "false". The
            service is only available to this app.
        -->
        <service
            android:name="com.example.android.intentservicedemo.RSSPullService"
            android:exported="false"/>

    </application>

</manifest>

参考:http://developer.android.com/training/run-background-service/index.html

时间: 2024-10-12 07:03:50

Android中使用IntentService执行后台任务的相关文章

Android中使用IntentService运行后台任务

IntentService提供了一种在后台线程中运行任务的方式,适合处理运行时间较长的后台任务. 长处: (1)IntentService执行在单独的线程中,不会堵塞UI线程 (2)IntentService不受生命周期的影响 缺点: (1)不能与UI直接进行交互,能够用Broadcast (2)顺序运行请求,第二个请求仅仅有在第一个请求运行完以后才干运行 (3)请求不能被中断 使用IntentService的步骤: (1)在Activity中通过startService启动service,并传

Android Training - 使用IntentService执行任务(Lesson 2 - 发送任务给IntentService)

写在http://hukai.me/blog/android-training-18-running-background-service-lesson-2/Android Training - 使用IntentService执行任务(Lesson 2 - 发送任务给IntentService)

Android Training - 使用IntentService执行任务(Lesson 1 - 创建IntentService)

写在http://hukai.me/blog/android-training-18-running-background-service-lesson-1/ Android Training - 使用IntentService执行任务(Lesson 1 - 创建IntentService)

android中最先被执行的activity

像C.C++.JAVA都有一个主函数作为程序的入口点,但是Android中并没有一个明确的主窗口,那么在有多个Activity的情况下,最先被执行的是哪个呢?这完全取决于配置文件AndroidMainfest.xml中的配置. 哪个Activity下有下面这段程序,哪个Activity就最先被加载 <intent-filter> <action android:name="android.intent.action.MAIN" /> <category a

Android中的延时执行

本来一直用java中的timer: new Timer().schedule(new TimerTask() { @Override public void run() { ... } },2000); 不知道怎么回事,有时候执行不了.后来看网上有人说更推荐用Android的一种方式: new Handler().postDelayed(new Runnable(){ public void run() { } }, 100); 这个好像好用些.没有出现执行不了的情况.

Android中实现延时执行操作的几种方法

1.使用线程的休眠实现延时操作 new Thread() { @Override public void run() { super.run(); Thread.sleep(3000);//休眠3秒 /** * 要执行的操作 */ } }.start(); 2.使用TimerTask实现延时操作 TimerTask task = new TimerTask() { @Override public void run() { /** *要执行的操作 */ } }; Timer timer = ne

Android中IntentService的使用及其源码解析

为什么我们需要IntentService ? Android中的IntentService是继承自Service类的,在我们讨论IntentService之前,我们先想一下Service的特点: Service的回调方法(onCreate.onStartCommand.onBind.onDestroy)都是运行在主线程中的.当我们通过startService启动Service之后,我们就需要在Service的onStartCommand方法中写代码完成工作,但是onStartCommand是运行

MVP 2015社区大讲堂之:在ASP.NET应用中执行后台任务

昨天下午,在微软的MVP 2015社区大讲堂上给大家分享了一个题目:在ASP.NET应用中执行后台任务.这是一点都不高大上,并且还有点土气的技术分享.不过我相信很多人都遇到过这样的问题. 虽然是一个很简单的技术,不过来课堂上听讲的同学还是很多,在此再次感谢大家的捧场. 在这个分享中我主要介绍了三种解决方案: QueueBackgroundWorkItem Hangfire Azure WebJobs 也同步演示了这三种方案的基本用法,但是由于是现场演示,所以代码的讲解都是一笔带过.不过还算这三个

Android中Services之异步IntentService(二)

转载地址:http://www.cnblogs.com/zhangs1986/p/3602154.html IntentService:异步处理服务,新开一个线程:handlerThread在线程中发消息,然后接受处理完成后,会清理线程,并且关掉服务. IntentService有以下特点: (1)  它创建了一个独立的工作线程来处理所有的通过onStartCommand()传递给服务的intents. (2)  创建了一个工作队列,来逐个发送intent给onHandleIntent(). (