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:56

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

Android中使用IntentService执行后台任务

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

Android技术16:编写Android中直接可运行的二进制文件

我们都知道Android中所有应用程序都运行在Android的Dalvik虚拟机上,一般程序不直接与操作系统打交道,即便调用底层的方法也通过JNI技术.不过我们可以直接使用C语言编写二进制文件,直接在底层运行.下面演示其步骤. 1.安装下载编译器和链接器软件.Sourcery G++ Lite Edition for ARM. arm-none-linux-gnueabi-gcc.exe是编译命令 bin/arm-none-linux-gnueabi-ld.exe是链接命令 2.编写C代码 为了

android中判断当前运行activity名的方法

本文实例讲述了android获取当前运行Activity名字的方法,可以避免即时聊天再出现通知的情况.分享给大家供大家参考.具体方法如下: 最近在做聊天时需要知道当前Activity是哪一个Activity.整理了两种方法: 第一种:要方便一点(Service中无法使用) private String getRunningActivityName() { String contextString = context.toString(); return contextString.substri

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

写在http://hukai.me/blog/android-training-18-running-background-service-lesson-2/

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

写在http://hukai.me/blog/android-training-18-running-background-service-lesson-1/ 版权声明:本文博客原创文章,博客,未经同意,不得转载.

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

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

在Android中用Kotlin的Anko运行后台任务(KAD 09)

作者:Antonio Leiva 时间:Jan 19, 2017 原文链接:https://antonioleiva.com/anko-background-kotlin-android/ Anko是由Jetbrains用Kotlin开发的Android库,它可以用于很多不同的方面.它的主要特性是使用DSL代码创建视图. 虽然这可能是很有趣的,然而事实是我很久以来一直很好地使用XML.所以还没有太多地试用这一特性. 其实它还有其他非常有用的特性,这就是我今天要告知你它是十分酷的原因. Anko用

Android中运行的错误:java.lang.UnsatisfiedLinkError: Couldn&#39;t load locSDK3: findLibrary returned null.

今天在使用百度地图的时候运行发现报错: 明明已经加入了liblocSDK3.so,但总是无法定位.提示错误java.lang.UnsatisfiedLinkError: Couldn't load locSDK3: findLibrary returned null. 网上找了很多的资料找到一个方法: 在libs下新建一个armeabi-v7a,然后将liblocSDK3.so复制一份到该文件夹" 如果这个不行,那么新建一个armeabi文件夹再放入liblocSDK3.so就可以了. Andr

Android中插件开发篇之----动态加载Activity(免安装运行程序)

一.前言 又到周末了,时间过的很快,今天我们来看一下Android中插件开发篇的最后一篇文章的内容:动态加载Activity(免安装运行程序),在上一篇文章中说道了,如何动态加载资源(应用换肤原理解析),没看过的同学,可以转战: http://blog.csdn.NET/jiangwei0910410003/article/details/47679843 当然,今天说道的内容还这这篇文章有关系.关于动态加载Activity的内容,网上也是有很多文章介绍了.但是他们可能大部分都是介绍通过代理的方