服务与活动之间通信

作者:追风剑情 发布于:2015-8-1 21:24 分类:Android

服务使用BroadcastReceiver来与活动通信。

活动

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.content.BroadcastReceiver;
  5. import android.content.Context;
  6. import android.content.Intent;
  7. import android.content.IntentFilter;
  8. import android.os.Bundle;
  9. import android.view.View;
  10. import android.widget.Toast;
  11.  
  12. public class ServicesActivity extends Activity {
  13.  
  14. IntentFilter intentFilter;
  15. @Override
  16. protected void onCreate(Bundle savedInstanceState) {
  17. super.onCreate(savedInstanceState);
  18. setContentView(R.layout.activity_services);
  19. }
  20. public void startService(View view){
  21. startService(new Intent(getBaseContext(), MyIntentService.class));
  22. }
  23. public void stopService(View view){
  24. stopService(new Intent(getBaseContext(), MyIntentService.class));
  25. }
  26. @Override
  27. public void onResume(){
  28. super.onResume();
  29. intentFilter = new IntentFilter();
  30. intentFilter.addAction("FILE_DOWNLOADED_ACTION");
  31. //注册意图侦听
  32. registerReceiver(intentReceiver, intentFilter);
  33. }
  34. @Override
  35. public void onPause(){
  36. super.onPause();
  37. //注销意图侦听
  38. unregisterReceiver(intentReceiver);
  39. }
  40. //处理侦听到的意图广播
  41. private BroadcastReceiver intentReceiver = new BroadcastReceiver() {
  42.  
  43. @Override
  44. public void onReceive(Context context, Intent intent) {
  45. // TODO Auto-generated method stub
  46. Toast.makeText(getBaseContext(), "File downloaded!", Toast.LENGTH_LONG).show();
  47. }
  48. };
  49. }

服务

  1. package com.example.androidtest;
  2.  
  3. import java.net.MalformedURLException;
  4. import java.net.URL;
  5.  
  6. import android.app.IntentService;
  7. import android.content.Intent;
  8. import android.util.Log;
  9. import android.widget.Toast;
  10.  
  11. /**
  12. * 继承IntentService的服务,在任务执行完成后会自行终止。
  13. * 无需手动调用stopSelf()、stopService()
  14. *
  15. * @author Administrator
  16. *
  17. */
  18. public class MyIntentService extends IntentService {
  19.  
  20. public MyIntentService() {
  21. //必需实现这个类的构造函数
  22. super("MyIntentServiceName");
  23. }
  24.  
  25. // 此方法在工作者线程上执行
  26. @Override
  27. protected void onHandleIntent(Intent intent) {
  28. try {
  29. int result = DownLoadFile(new URL("http://www.amazon.com/somefile.pdf"));
  30. Log.d("AndroidTest", "Downloaded " + result + " bytes");
  31. //广播一个意图
  32. Intent broadcastIntent = new Intent();
  33. broadcastIntent.setAction("FILE_DOWNLOADED_ACTION");
  34. getBaseContext().sendBroadcast(broadcastIntent);
  35. } catch (MalformedURLException e) {
  36. Log.d("AndroidTest", e.getMessage());
  37. }
  38. }
  39. @Override
  40. public void onDestroy(){
  41. super.onDestroy();
  42. Toast.makeText(this, "MyIntentService Destroyed", Toast.LENGTH_LONG).show();
  43. }
  44.  
  45. private int DownLoadFile(URL url)
  46. {
  47. try{
  48. Thread.sleep(5000);//模拟文件下载
  49. }catch(InterruptedException e){
  50. Log.d("AndroidTest", e.getMessage());
  51. }
  52. return 100;//文件大小
  53. }
  54. }

运行效果

11111111111.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号