1, 在BroadcastReceiver中启动Activity的问题
 *
 * 如果在BroadcastReceiver的onReceive()方法中如下启动一个Activity
 * Intent intent=new Intent(context,AnotherActivity.class);
 * context.startActivity(intent);
 * 可捕获异常信息:
 * android.util.AndroidRuntimeException:
 * Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag.
 * Is this really what you want?
 * 它说明:在Activity的context(上下文环境)之外调用startActivity()方法时
 * 需要给Intent设置一个flag:FLAG_ACTIVITY_NEW_TASK
 *
 * 所以在BroadcastReceiver的onReceive()方法中启动Activity应写为:
 * Intent intent=new Intent(context,AnotherActivity.class);
 * intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
 * context.startActivity(intent);
 *
 *
 * 之前描述了问题的现象和解决办法,现在试着解释一下原因:
 * 1 在普通情况下,必须要有前一个Activity的Context,才能启动后一个Activity
 * 2 但是在BroadcastReceiver里面是没有Activity的Context的
 * 3 对于startActivity()方法,源码中有这么一段描述:
 *   Note that if this method is being called from outside of an
 *   {@link android.app.Activity} Context, then the Intent must include
 *   the {@link Intent#FLAG_ACTIVITY_NEW_TASK} launch flag.  This is because,
 *   without being started from an existing Activity, there is no existing
 *   task in which to place the new activity and thus it needs to be placed
 *   in its own separate task.
 *   说白了就是如果不加这个flag就没有一个Task来存放新启动的Activity.
 *  
 * 4 其实该flag和设置Activity的LaunchMode为SingleTask的效果是一样的
 *
 */
 
2,但若看的源码够的话,还会发现有另外一种方法在Service里面启动Activity的另外一种方法:通过PendingIntent,下面就以Tag中TagView(Activity)和TagService为例子:

TagView里启动TagService并且把待会在TagService里面启动的Activity用Pending将其封装好并且传给TagService:

  1. TagService.saveMessages(this, msgs, false, getPendingIntent());private PendingIntent getPendingIntent() {
  2. Intent callback = new Intent();
  3. callback.setClass(this, TagViewer.class);
  4. callback.setAction(Intent.ACTION_VIEW);
  5. callback.setFlags(Intent. FLAG_ACTIVITY_CLEAR_TOP);
  6. callback.putExtra(EXTRA_KEEP_TITLE, true);
  7. return PendingIntent.getActivity(this, 0, callback, PendingIntent.FLAG_CANCEL_CURRENT);
  8. }
  1. public static void saveMessages(Context context, NdefMessage[] msgs, boolean starred,
  2. PendingIntent pending) {
  3. Intent intent = new Intent(context, TagService.class);
  4. intent.putExtra(TagService.EXTRA_SAVE_MSGS, msgs);
  5. intent.putExtra(TagService.EXTRA_STARRED, starred);
  6. intent.putExtra(TagService.EXTRA_PENDING_INTENT, pending);
  7. context.startService(intent);
  8. }
  1. @Override
  2. public void onHandleIntent(Intent intent) {
  3. if (intent.hasExtra(EXTRA_SAVE_MSGS)) {
  4. Parcelable[] msgs = intent.getParcelableArrayExtra(EXTRA_SAVE_MSGS);
  5. NdefMessage msg = (NdefMessage) msgs[0];
  6. ContentValues values = NdefMessages.toValues(this, msg, false, System.currentTimeMillis());
  7. Uri uri = getContentResolver().insert(NdefMessages.CONTENT_URI, values);
  8. if (intent.hasExtra(EXTRA_PENDING_INTENT)) {
  9. Intent result = new Intent();
  10. result.setData(uri);
  11. PendingIntent pending = (PendingIntent) intent.getParcelableExtra(EXTRA_PENDING_INTENT);
  12. try {
  13. pending.send(this, 0, result);
  14. } catch (CanceledException e) {
  15. if (DEBUG) Log.d(TAG, "Pending intent was canceled.");
  16. }
  17. }
  18. return;
  19. }
  20. .....
  21. }

通过pending.send(this, 0, result);启动了对应的Activity.

这里也是PendingIntent的用法之一。 
我不太明白这两种启动Activity的方法有什么不同之处虽然效果都是一样的,对开销会怎样,希望知道的朋友能和我分享。呵呵.. 

____________________________________________________
 
Android异常之Service启动Activity

在Activity中其中startActivity这个大家应该是非常熟悉的;那么从service里面调用startActivity话,会怎么样呢?
会出现下面的异常:
android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity  context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

也就是在service里面启动Activity的话,必须添加FLAG_ACTIVITY_NEW_TASK flag。
那么下面的话,我们将从下面几个方面分析这个问题。
1.    这个异常怎么产生的?
2.    解决这个异常后会出现问题?
3.    为什么Activity.startActivity()不会出现这个问题?
4.    Android 为什么要这么设计?
下面,一一分析

一.    Context的继承关系图
首先来看一张图, 这张图表示了Context里面的基本继承关系。
 
1.    最上面的是Context.java,它其实是一个抽象类,它有两个重要的子类ContextImpl和ContextWrapper
2.    ContextImpl,是Context功能实现的主要类,
3.    ContextWrapper,顾名思义,它只是一个包装而已。主要功能实现都是通过调用ContextImpl去实现的。
4.    ContextThemeWrapper,包括一些主题的包装,由于Service没有主题,所以直接继承ContextWrapper;但是Activity就需要继承ContextThemeWrapper

二.    异常如何产生
1.    找到报错的代码
文件:
frameworks\base\core\java\android\app\ContextImpl.java
代码:

01 public void startActivity(Intent intent, Bundle options) {
02         warnIfCallingFromSystemProcess();
03         if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
04             throw new AndroidRuntimeException(
05                     "Calling startActivity() from outside of an Activity "
06                     + " context requires the FLAG_ACTIVITY_NEW_TASK flag."
07                     + " Is this really what you want?");
08         }
09         mMainThread.getInstrumentation().execStartActivity(
10             getOuterContext(), mMainThread.getApplicationThread(), null,
11             (Activity)null, intent, -1, options);
12 }

在下面的if条件判断,如果不包含FLAG_ACTIVITY_NEW_TASK就会报这个错误

1 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
2     ...
3 }   

那么service.startActivity(Intent intent)怎么会调用这里来的呢?
要回答这个问题,我们分析下service.startActivity()做了什么,其实,service.startActivity调用的是ContextWrapper.startActivity(),因为service继承自ContextWrapper
2.  代码文件
frameworks\base\core\java\android\content\ContextWrapper.java
代码:

1 public void startActivity(Intent intent, Bundle options) {
2     mBase.startActivity(intent, options);
3 }

ContextWrapper.startActivity的话,是直接调用的
mBase.startActivity(intent, options);
那么这个mBase是什么呢?又是什么时候赋值的呢?其实mBase是在ContextWrapper的attachBaseContext的时候初始化的。如下:

1 protected void attachBaseContext(Context base) {
2         if (mBase != null) {
3             throw new IllegalStateException("Base context already set");
4         }
5         mBase = base;
6     }

那又是谁调用attachBaseContext的呢?
是在service创建的时候,在ActivityThread里面调用,如下:

3. 代码文件
frameworks\base\core\java\android\app\ActivityThread.java
代码:

01 private void handleCreateService(CreateServiceData data) {
02         LoadedApk packageInfo = getPackageInfoNoCheck(
03                 data.info.applicationInfo, data.compatInfo);
04         Service service = null;
05         try {
06             java.lang.ClassLoader cl = packageInfo.getClassLoader();
07             service = (Service) cl.loadClass(data.info.name).newInstance();
08         } catch (Exception e) {
09             ....
10         }
11         try {
12             if (localLOGV) Slog.v(TAG, "Creating service " + data.info.name);
13             ContextImpl context = ContextImpl.createAppContext(this, packageInfo);
14             context.setOuterContext(service);
15             Application app = packageInfo.makeApplication(false, mInstrumentation);
16             service.attach(context, this, data.info.name, data.token, app,
17                     ActivityManagerNative.getDefault());
18             service.onCreate();
19             mServices.put(data.token, service);
20             ....
21         } catch (Exception e) {
22             ...
23         }
24     }

抽出主要代码分析ActivityThread. handleCreateService()方法里面主要做这几件事
3.1 通过pms找到要启动的Service配置信息,然后通过反射生成Service对象
3.2 创建ContextImpl对象,然后调用service.attach方法设置到ContextWrapper.java的mBaseContext变量里面。

那现在就明白了,service.startActivity()->ContextWrapper.startActivity()->ContextImpl.startActivity()
然后再ContextImpl.startActivity里面会检查Intent的参数是否包含FLAG_ACTIVITY_NEW_TASK,从而出现这个异常。

三.    解决这个异常后会出现问题?
有些同学就会说了,在Service里面启动Activity必须要有FLAG_ACTIVITY_NEW_TASK参数,那么我们添加上不就可以了?如下:
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
那么这样会带来什么问题呢?
这样带来的问题就是在最近任务列表里面会出现两个相同的应用程序,比如你是在电话本里面启动的,那么最近任务列表就会出现两个电话本;因为有两个Task嘛!
那怎么解决呢?其实也非常好解决,只要在新的Task里面的Activity里面配置android:excludeFromRecents="true"就可以了。表示这个Activity不会显示在最近列表里面。

四.    Activity.startActivity()为什么不出现这个异常呢?
要回答这个问题,需要看下Activity.startActivity()调用到哪里去了
代码文件:
frameworks\base\core\java\android\app\Activity.java
代码:

1 public void startActivity(Intent intent) {
2    this.startActivity(intent, null);
3 }

接下来会调用startActivityForResult()->然后一路调用到Ams去启动Activity;
原来如此,Activity重写了startActivity()方法...

五.    Android 为什么要这么设计?
那现在来回答这个问题,为什么Android在Service 里面启动Activity要强制规定使用参数FLAG_ACTIVITY_NEW_TASK呢?
我们可以来做这样一个假设,我们有这样一个需求:
我们在电话本里面启动一个Service,然后它执行5分钟后,启动一个Activity
那么很有可能用户在5分钟后已经不在电话本程序里面操作了,有可能去上网,打开浏览器程序了。
5分钟后,此时当前的Task是浏览器的task,那么弹出Activity,如果这个Activity在当前Task的话,也就是浏览器的Task;那么用户就会觉得莫名其妙;因为弹出的Activity和浏览器在一个Task,本来这个Activity应该属于电话本的。

所以,对于Service而言,干脆强制定义启动的Activity要创建一个新的Task.
这种设计,我觉得还是比较合理的。

 
————————————----------------------------------------------------------
分类: Android 高手进阶2013-08-05 00:11 49344人阅读 评论(81) 收藏 举报

转载请注明地址http://blog.csdn.net/xiaanming/article/details/9750689

在Android中,Activity主要负责前台页面的展示,Service主要负责需要长期运行的任务,所以在我们实际开发中,就会常常遇到Activity与Service之间的通信,我们一般在Activity中启动后台Service,通过Intent来启动,Intent中我们可以传递数据给Service,而当我们Service执行某些操作之后想要更新UI线程,我们应该怎么做呢?接下来我就介绍两种方式来实现Service与Activity之间的通信问题

  • 通过Binder对象

当Activity通过调用bindService(Intent service, ServiceConnection conn,int flags),我们可以得到一个Service的一个对象实例,然后我们就可以访问Service中的方法,我们还是通过一个例子来理解一下吧,一个模拟下载的小例子,带大家理解一下通过Binder通信的方式

首先我们新建一个工程Communication,然后新建一个Service类

  1. <span style="font-family:System;">package com.example.communication;
  2. import android.app.Service;
  3. import android.content.Intent;
  4. import android.os.Binder;
  5. import android.os.IBinder;
  6. public class MsgService extends Service {
  7. /**
  8. * 进度条的最大值
  9. */
  10. public static final int MAX_PROGRESS = 100;
  11. /**
  12. * 进度条的进度值
  13. */
  14. private int progress = 0;
  15. /**
  16. * 增加get()方法,供Activity调用
  17. * @return 下载进度
  18. */
  19. public int getProgress() {
  20. return progress;
  21. }
  22. /**
  23. * 模拟下载任务,每秒钟更新一次
  24. */
  25. public void startDownLoad(){
  26. new Thread(new Runnable() {
  27. @Override
  28. public void run() {
  29. while(progress < MAX_PROGRESS){
  30. progress += 5;
  31. try {
  32. Thread.sleep(1000);
  33. } catch (InterruptedException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. }).start();
  39. }
  40. /**
  41. * 返回一个Binder对象
  42. */
  43. @Override
  44. public IBinder onBind(Intent intent) {
  45. return new MsgBinder();
  46. }
  47. public class MsgBinder extends Binder{
  48. /**
  49. * 获取当前Service的实例
  50. * @return
  51. */
  52. public MsgService getService(){
  53. return MsgService.this;
  54. }
  55. }
  56. }</span>

上面的代码比较简单,注释也比较详细,最基本的Service的应用了,相信你看得懂的,我们调用startDownLoad()方法来模拟下载任务,然后每秒更新一次进度,但这是在后台进行中,我们是看不到的,所以有时候我们需要他能在前台显示下载的进度问题,所以我们接下来就用到Activity了

  1. Intent intent = new Intent("com.example.communication.MSG_ACTION");
  2. bindService(intent, conn, Context.BIND_AUTO_CREATE);

通过上面的代码我们就在Activity绑定了一个Service,上面需要一个ServiceConnection对象,它是一个接口,我们这里使用了匿名内部类

  1. <span style="font-family:System;">  ServiceConnection conn = new ServiceConnection() {
  2. @Override
  3. public void onServiceDisconnected(ComponentName name) {
  4. }
  5. @Override
  6. public void onServiceConnected(ComponentName name, IBinder service) {
  7. //返回一个MsgService对象
  8. msgService = ((MsgService.MsgBinder)service).getService();
  9. }
  10. };</span>

在onServiceConnected(ComponentName name, IBinder service) 回调方法中,返回了一个MsgService中的Binder对象,我们可以通过getService()方法来得到一个MsgService对象,然后可以调用MsgService中的一些方法,Activity的代码如下

  1. <span style="font-family:System;">package com.example.communication;
  2. import android.app.Activity;
  3. import android.content.ComponentName;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.content.ServiceConnection;
  7. import android.os.Bundle;
  8. import android.os.IBinder;
  9. import android.view.View;
  10. import android.view.View.OnClickListener;
  11. import android.widget.Button;
  12. import android.widget.ProgressBar;
  13. public class MainActivity extends Activity {
  14. private MsgService msgService;
  15. private int progress = 0;
  16. private ProgressBar mProgressBar;
  17. @Override
  18. protected void onCreate(Bundle savedInstanceState) {
  19. super.onCreate(savedInstanceState);
  20. setContentView(R.layout.activity_main);
  21. //绑定Service
  22. Intent intent = new Intent("com.example.communication.MSG_ACTION");
  23. bindService(intent, conn, Context.BIND_AUTO_CREATE);
  24. mProgressBar = (ProgressBar) findViewById(R.id.progressBar1);
  25. Button mButton = (Button) findViewById(R.id.button1);
  26. mButton.setOnClickListener(new OnClickListener() {
  27. @Override
  28. public void onClick(View v) {
  29. //开始下载
  30. msgService.startDownLoad();
  31. //监听进度
  32. listenProgress();
  33. }
  34. });
  35. }
  36. /**
  37. * 监听进度,每秒钟获取调用MsgService的getProgress()方法来获取进度,更新UI
  38. */
  39. public void listenProgress(){
  40. new Thread(new Runnable() {
  41. @Override
  42. public void run() {
  43. while(progress < MsgService.MAX_PROGRESS){
  44. progress = msgService.getProgress();
  45. mProgressBar.setProgress(progress);
  46. try {
  47. Thread.sleep(1000);
  48. } catch (InterruptedException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. }
  53. }).start();
  54. }
  55. ServiceConnection conn = new ServiceConnection() {
  56. @Override
  57. public void onServiceDisconnected(ComponentName name) {
  58. }
  59. @Override
  60. public void onServiceConnected(ComponentName name, IBinder service) {
  61. //返回一个MsgService对象
  62. msgService = ((MsgService.MsgBinder)service).getService();
  63. }
  64. };
  65. @Override
  66. protected void onDestroy() {
  67. unbindService(conn);
  68. super.onDestroy();
  69. }
  70. }</span><span style="font-family: simsun;">
  71. </span>

其实上面的代码我还是有点疑问,就是监听进度变化的那个方法我是直接在线程中更新UI的,不是说不能在其他线程更新UI操作吗,可能是ProgressBar比较特殊吧,我也没去研究它的源码,知道的朋友可以告诉我一声,谢谢!

上面的代码就完成了在Service更新UI的操作,可是你发现了没有,我们每次都要主动调用getProgress()来获取进度值,然后隔一秒在调用一次getProgress()方法,你会不会觉得很被动呢?可不可以有一种方法当Service中进度发生变化主动通知Activity,答案是肯定的,我们可以利用回调接口实现Service的主动通知,不理解回调方法的可以看看http://blog.csdn.net/xiaanming/article/details/8703708

新建一个回调接口

  1. public interface OnProgressListener {
  2. void onProgress(int progress);
  3. }

MsgService的代码有一些小小的改变,为了方便大家看懂,我还是将所有代码贴出来

  1. <span style="font-family:System;">package com.example.communication;
  2. import android.app.Service;
  3. import android.content.Intent;
  4. import android.os.Binder;
  5. import android.os.IBinder;
  6. public class MsgService extends Service {
  7. /**
  8. * 进度条的最大值
  9. */
  10. public static final int MAX_PROGRESS = 100;
  11. /**
  12. * 进度条的进度值
  13. */
  14. private int progress = 0;
  15. /**
  16. * 更新进度的回调接口
  17. */
  18. private OnProgressListener onProgressListener;
  19. /**
  20. * 注册回调接口的方法,供外部调用
  21. * @param onProgressListener
  22. */
  23. public void setOnProgressListener(OnProgressListener onProgressListener) {
  24. this.onProgressListener = onProgressListener;
  25. }
  26. /**
  27. * 增加get()方法,供Activity调用
  28. * @return 下载进度
  29. */
  30. public int getProgress() {
  31. return progress;
  32. }
  33. /**
  34. * 模拟下载任务,每秒钟更新一次
  35. */
  36. public void startDownLoad(){
  37. new Thread(new Runnable() {
  38. @Override
  39. public void run() {
  40. while(progress < MAX_PROGRESS){
  41. progress += 5;
  42. //进度发生变化通知调用方
  43. if(onProgressListener != null){
  44. onProgressListener.onProgress(progress);
  45. }
  46. try {
  47. Thread.sleep(1000);
  48. } catch (InterruptedException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. }
  53. }).start();
  54. }
  55. /**
  56. * 返回一个Binder对象
  57. */
  58. @Override
  59. public IBinder onBind(Intent intent) {
  60. return new MsgBinder();
  61. }
  62. public class MsgBinder extends Binder{
  63. /**
  64. * 获取当前Service的实例
  65. * @return
  66. */
  67. public MsgService getService(){
  68. return MsgService.this;
  69. }
  70. }
  71. }</span>

Activity中的代码如下

  1. <span style="font-family:System;">package com.example.communication;
  2. import android.app.Activity;
  3. import android.content.ComponentName;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.content.ServiceConnection;
  7. import android.os.Bundle;
  8. import android.os.IBinder;
  9. import android.view.View;
  10. import android.view.View.OnClickListener;
  11. import android.widget.Button;
  12. import android.widget.ProgressBar;
  13. public class MainActivity extends Activity {
  14. private MsgService msgService;
  15. private ProgressBar mProgressBar;
  16. @Override
  17. protected void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.activity_main);
  20. //绑定Service
  21. Intent intent = new Intent("com.example.communication.MSG_ACTION");
  22. bindService(intent, conn, Context.BIND_AUTO_CREATE);
  23. mProgressBar = (ProgressBar) findViewById(R.id.progressBar1);
  24. Button mButton = (Button) findViewById(R.id.button1);
  25. mButton.setOnClickListener(new OnClickListener() {
  26. @Override
  27. public void onClick(View v) {
  28. //开始下载
  29. msgService.startDownLoad();
  30. }
  31. });
  32. }
  33. ServiceConnection conn = new ServiceConnection() {
  34. @Override
  35. public void onServiceDisconnected(ComponentName name) {
  36. }
  37. @Override
  38. public void onServiceConnected(ComponentName name, IBinder service) {
  39. //返回一个MsgService对象
  40. msgService = ((MsgService.MsgBinder)service).getService();
  41. //注册回调接口来接收下载进度的变化
  42. msgService.setOnProgressListener(new OnProgressListener() {
  43. @Override
  44. public void onProgress(int progress) {
  45. mProgressBar.setProgress(progress);
  46. }
  47. });
  48. }
  49. };
  50. @Override
  51. protected void onDestroy() {
  52. unbindService(conn);
  53. super.onDestroy();
  54. }
  55. }
  56. </span>

用回调接口是不是更加的方便呢,当进度发生变化的时候Service主动通知Activity,Activity就可以更新UI操作了

当我们的进度发生变化的时候我们发送一条广播,然后在Activity的注册广播接收器,接收到广播之后更新ProgressBar,代码如下

  1. package com.example.communication;
  2. <span style="font-family:System;">
  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.view.View.OnClickListener;
  11. import android.widget.Button;
  12. import android.widget.ProgressBar;
  13. public class MainActivity extends Activity {
  14. private ProgressBar mProgressBar;
  15. private Intent mIntent;
  16. private MsgReceiver msgReceiver;
  17. @Override
  18. protected void onCreate(Bundle savedInstanceState) {
  19. super.onCreate(savedInstanceState);
  20. setContentView(R.layout.activity_main);
  21. //动态注册广播接收器
  22. msgReceiver = new MsgReceiver();
  23. IntentFilter intentFilter = new IntentFilter();
  24. intentFilter.addAction("com.example.communication.RECEIVER");
  25. registerReceiver(msgReceiver, intentFilter);
  26. mProgressBar = (ProgressBar) findViewById(R.id.progressBar1);
  27. Button mButton = (Button) findViewById(R.id.button1);
  28. mButton.setOnClickListener(new OnClickListener() {
  29. @Override
  30. public void onClick(View v) {
  31. //启动服务
  32. mIntent = new Intent("com.example.communication.MSG_ACTION");
  33. startService(mIntent);
  34. }
  35. });
  36. }
  37. @Override
  38. protected void onDestroy() {
  39. //停止服务
  40. stopService(mIntent);
  41. //注销广播
  42. unregisterReceiver(msgReceiver);
  43. super.onDestroy();
  44. }
  45. /**
  46. * 广播接收器
  47. * @author len
  48. *
  49. */
  50. public class MsgReceiver extends BroadcastReceiver{
  51. @Override
  52. public void onReceive(Context context, Intent intent) {
  53. //拿到进度,更新UI
  54. int progress = intent.getIntExtra("progress", 0);
  55. mProgressBar.setProgress(progress);
  56. }
  57. }
  58. }
  59. </span>
  1. <span style="font-family:System;">package com.example.communication;
  2. import android.app.Service;
  3. import android.content.Intent;
  4. import android.os.IBinder;
  5. public class MsgService extends Service {
  6. /**
  7. * 进度条的最大值
  8. */
  9. public static final int MAX_PROGRESS = 100;
  10. /**
  11. * 进度条的进度值
  12. */
  13. private int progress = 0;
  14. private Intent intent = new Intent("com.example.communication.RECEIVER");
  15. /**
  16. * 模拟下载任务,每秒钟更新一次
  17. */
  18. public void startDownLoad(){
  19. new Thread(new Runnable() {
  20. @Override
  21. public void run() {
  22. while(progress < MAX_PROGRESS){
  23. progress += 5;
  24. //发送Action为com.example.communication.RECEIVER的广播
  25. intent.putExtra("progress", progress);
  26. sendBroadcast(intent);
  27. try {
  28. Thread.sleep(1000);
  29. } catch (InterruptedException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. }
  34. }).start();
  35. }
  36. @Override
  37. public int onStartCommand(Intent intent, int flags, int startId) {
  38. startDownLoad();
  39. return super.onStartCommand(intent, flags, startId);
  40. }
  41. @Override
  42. public IBinder onBind(Intent intent) {
  43. return null;
  44. }
  45. }</span>

总结:

  1. Activity调用bindService (Intent service, ServiceConnection conn, int flags)方法,得到Service对象的一个引用,这样Activity可以直接调用到Service中的方法,如果要主动通知Activity,我们可以利用回调方法
  2. Service向Activity发送消息,可以使用广播,当然Activity要注册相应的接收器。比如Service要向多个Activity发送同样的消息的话,用这种方法就更好

Service 启动Activity的更多相关文章

  1. 从service启动activity startActivity慢 的解决方案

    Intent intent = new Intent(context, A.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Pendin ...

  2. Android开机启动Activity或者Service方法

    本文出自 “Bill_Hoo专栏” 博客,请务必保留此出处http://billhoo.blog.51cto.com/2337751/761230 这段时间在做Android的基础开发,现在有一需求是 ...

  3. 关于通过adb启动Activity、activity、service以及发送broadcast的命令

    一.启动activity: $ adb shell$ am start -n {包名}/{包名}.{活动名称} 如:启动一个名叫MainActivity的活动 # am start -n com.ex ...

  4. Android开机启动Activity或者Service方法(转载)

    这段时间在做Android的基础开发,现在有一需求是开机启动,按照网上某些博文教程做了下,始终不成功,一开机总是提示所启动的应用程序意外终止,于是参考了Android SDK doc,终于解决问题,下 ...

  5. Service里面启动Activity和Alertdialog

    启动Activity源码:(记得要加上Intent.FLAG_ACTIVITY_NEW_TASK) Intent intent = new Intent(); intent.setFlags(Inte ...

  6. [Android UI] Service里面启动Activity和Alertdialog

    启动Activity源码:(记得要加上Intent.FLAG_ACTIVITY_NEW_TASK) Intent intent = new Intent(); intent.setFlags(Inte ...

  7. Android—Service与Activity的交互

    service-Android的四大组件之一.人称"后台服务"指其本身的运行并不依赖于用户可视的UI界面 实际开发中我们经常需要service和activity之间可以相互传递数据 ...

  8. Android Service与Activity之间通信的几种方式

    在Android中,Activity主要负责前台页面的展示,Service主要负责需要长期运行的任务,所以在我们实际开发中,就会常常遇到Activity与Service之间的通信,我们一般在Activ ...

  9. Android学习笔记(九)一个例子弄清Service与Activity通信

    上一篇博文主要整理了Service的创建.绑定过程,本篇主要整理一下Service与Activity的通信方式.包括在启动一个Service时向它传递数据.怎样改变运行中的Service中得数据和侦听 ...

随机推荐

  1. .NetCore实践篇:分布式监控系统zipkin踩坑之路(二)

    前言 <牧神记>有一句话说的好,破心中神.当不再对分布式,微服务,CLR畏惧迷茫的时候,你就破了心中神. zipkin复习 第一篇: .Net架构篇:思考如何设计一款实用的分布式监控系统? ...

  2. 【Java并发.1】简介

    继上一本<深入理解Java虚拟机>之后,学习计划里的另一本书<Java并发编程实战>现在开始学习,并记录学习笔记. 第一章主要内容是介绍 并发 的简介.发展.特点. 编写正确的 ...

  3. PMO在组织中实现价值应做的工作

    PMO在组织中实现价值应做的工作 研发人员及项目经理常常对PMO有反感情绪,认为其不熟悉业务流程与技术.经常要求项目经理和研发人员提交形式化的材料,只审批和监控,不能为项目提供良好的服务.在很多企业, ...

  4. Ionic2 下处理 Android 设备下返回按钮的事件

    原文发表于我的技术博客 本文分享了 Ionic2 下处理 Android 设备下返回按钮的事件,供参考. 原文发表于我的技术博客 代码中我分享了如何捕捉 Ionic2 项目在 Android 设备下返 ...

  5. Docker容器学习梳理 - 基础环境安装

    以下是centos系统安装docker的操作记录 1)第一种方法:采用系统自带的docker安装,但是这一般都不是最新版的docker安装epel源[root@docker-server ~]# wg ...

  6. combox的基本应用

    easyui-combox:控件的初始化: 可以在其中进行文字的筛选功能(过滤), 动态加载数据的方法. <!DOCTYPE html><html lang="en&quo ...

  7. [Beta]M2事后分析

    计划 你原计划的工作是否最后都做完了? 如果有没做完的,为什么? 答:没有,全部的功能没有实现.其中,界面还差两个,逻辑还差闹钟逻辑和群组逻辑,可以说这些东西是我们的核心功能之一,缺失了他们对我们整个 ...

  8. 《Linux内核设计与实现》第五章学习笔记

    <Linux内核设计与实现>第五章学习笔记 姓名:王玮怡  学号:20135116 一.与内核通信     在Linux中,系统调用是用户空间访问内核的唯一手段:除异常和陷入外,它们是内核 ...

  9. 《Linux内核设计与实现》 第三章学习笔记

    一.进程 1.进程就是处于执行期的程序(目标码存放在某种存储介质上).但进程并不仅仅局限于一段可执行程序代码,通常进程还要包含其他资源.执行线程,简称线程(thread),是在进程中活动的对象. 2. ...

  10. shiro课程的学习

    1.shiro的课程目标 (1)shiro的整体框架 各组件的概念 (2)shiro 认证 授权的过程 (3)shiro自定义的Reaml Filter (4)shiro session 管理 (5) ...