hi,
I'm making app it used mapActivity.
I can use mapActivity by normal Activity transition.uses-library tag
is already setting.
but I couldn't use mapActivity from service's class.i wanna show
activity(ex mapactivity).
its my service class's code.showmap is extends MapActivity.
------------------------------------------------------------------------------
Intent newIntent = new Intent(Intent.ACTION_VIEW);
newIntent = new Intent(context, showmap.class);
newIntent.putExtra("serID", bundle.getInt("serID"));//its sample
newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
------------------------------------------------------------------------------
i think its process's problem.becouse if app's process wasn't dead,it
can work.
but take long time(app's processs dead),it cant work.
I tried set android:process=":remote" in manifest.xml.
but i cant find correct way.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---