[android-developers] Re: passing data from service to activity continously

2014-02-04 Thread Seshu
Use local broadcast manager for sending data from service to activity... On Friday, January 31, 2014 3:20:06 AM UTC+5:30, Goutom wrote: > > > For this, you can use a > BroadcastReceiver > in >> your Activity. >> >> H

[android-developers] Re: passing data from service to activity continously

2014-01-30 Thread Goutom
> For this, you can use a > BroadcastReceiver > in > your Activity. > > Here is a great example I > use to > communicate continuously between

[android-developers] Re: passing data from service to activity continously

2011-05-13 Thread pramod.deore
Hi, I had written code but it is not working properly. In my Serivce I have Intent mIntent = new Intent(MyService.this, MarketWatchTest.class); mIntent.putExtras(bundle); mIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);