Tagged Questions
0
votes
1answer
391 views
Android resume activity with Intent
I've GOOGLE MAPS with some overlays on it. The overlays are taken from a databse, so it takes some time to load the overlays.
Then I click to one overlay to bring another activity with info about ...
2
votes
0answers
139 views
Start / Resume Task Back Stack from Notification as Recent Apps Switching
My application has two activities A and B. A is the root activity and set with singleTop launchMode. B is started from A, i.e. the task stack is (A->B)
I add a status notification to launch the ...
0
votes
1answer
222 views
Starting intent without a new bundle
I have a which is a list click method that starts a new activity and gives it a bundle
protected void onListItemClick(ListView l , View v, int position, long id){
super.onListItemClick(l, v, ...
0
votes
1answer
832 views
Making an Android App (Java) 'Wait' Until Something Finishes
I have this app that originally has you take a picture, shows you a progress bar, and uploads it to a website.
What I want to add is something so that before the progress bar shows, an Intent starts ...
2
votes
2answers
573 views
activities resume from homescreen launcher in emulator, but not on android device
My android application has a login screen that is launched as the main activity with intents as follows:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
...
12
votes
2answers
10k views
How to make notification intent resume rather than making a new intent?
What i have here is a simple webview activity that when loaded it auto displays an ongoing notification. The idea is that people can navigate away from this activity and quickly access it again from ...
