Tagged Questions
The onresume tag has no wiki summary.
4
votes
2answers
482 views
Android Activity Life Cycle - difference between onPause() and OnStop()
how does these two methods differ because both are in fact very similar and the instance itself is not destroyed while they go into these two methods as they are intermediate methods before the final ...
4
votes
1answer
105 views
UDP listening socket stops listening after network configuration changes
I have a UDP socket listening in a port for broadcast transmissions and it is working fine.
However, when I hibernate and resume the OS (Windows 7), the socket just stops receving data (and I can see ...
3
votes
3answers
316 views
Get onPause & onResume like events at application/task level
I was wondering what could be the reason for not having a callback at the application level when an application goes to background and comes to the foreground. Activity class's onPause and onResume ...
3
votes
4answers
568 views
Restarting/Pausing Thread in onResume/onPause
I'm have a game that's uses SurfaceView implementation to display the objects.
I have a thread which draws the SurfaceView time-to-time to the screen.
The game is running completely.
Unfortunately, it ...
3
votes
2answers
1k views
Android lifecycle: Fill in data in activity in onStart() or onResume()?
Should you get data via a cursor and fill in the data on the screen, such as setting the window title, in onStart() or onResume()?
onStart() would seem the logical place because after onStart() the ...
2
votes
1answer
36 views
Android-Best way to get new location in onResume()
The app Im working on uses gps and sometimes in the onResume when the user restarts the app the location used is very old and sometimes very far away. It also will not update even when I have set the ...
2
votes
2answers
44 views
Activity life-cycle / media resumes playing on the lock-screen
I'm working on a media streaming app, and noticing some odd behavior. Media stops playing when my device locks, but then starts playing again before I even unlock the device.
Any suggestions what ...
2
votes
3answers
147 views
onRestart() being called when back button hit, any way to prevent this?
My application calls a few web service when it is freshly launched. I would also like to call these web service if the user launches the app (which was running in the background) and resumes. I've ...
2
votes
2answers
113 views
Android - opening series of activities after restart
there is my situation. I have same activities which goes one by another, no matter what they are doing. Lets name them from the start of alphabet. When users uses my application, he goes through ...
2
votes
6answers
279 views
How can I know that OnResume comes after onCreate?
I have few activities and from one activity I open another and that go back to the first one...
The point is onCreate is called ones , and onResume every time when the activity is show. For example ...
2
votes
1answer
190 views
Which activity starts when orientation changes occur?
Which activity of the lifecycle starts when orientation changes occur? My application executes the onResume() activity or maybe reloads the whole activity because I've set one boolean to check whether ...
2
votes
3answers
3k views
Android onCreate onResume
i have a problem.
When i start for the first time my android application, in the main activity both the onCreate and the onResume are called. but i want to be called only the onCreate.
what can i do?
...
2
votes
2answers
179 views
Android - How to track app Resumes only when you exit and come back to the app?
I have an issue. For analytic purposes I need to track when the APP (not activity) is resumed. The problem I have now is that if I put the tracker on the OnResume event of an activity, it will get ...
2
votes
0answers
497 views
min3D framework load .OBJ and .3DS. Resume redraw
I've been using min3D framework for my last project and I'm stack with couple of problems.
First - it takes a lot of effort to get it load my car model from .OBJ file. I've managed to do it only by ...
2
votes
1answer
412 views
I lose control Android's Webview when resuming the application
basically, what am doing is that am running a flash file (playing music) in the background of the app using webview, and when I want to stop the music , I just load "about:blank"
I want to keep the ...
2
votes
1answer
510 views
onActivityResult no longer being called after onDestroy
onActivityResult is giving me major headaches. My little game has a title / menu screen. Upon clicking "new game" an Activity is launched which creates a SurfaceView for my game world.
When ...
2
votes
1answer
2k views
Android back button does not restart activity?
My app intiates an activity. On the click of a button, the app opens up the browser with a webpage. When I hit the back button, it comes back to my initial activity screen, but does not resume or ...
1
vote
1answer
184 views
Android: GLSurfaceView is black after resuming app
As per the title, the GLSurfaceView is blank after resuming from a paused state. The Renderer's onSurfaceCreated, onSurfaceChanged, and onDrawFrame get called after it resumes, but the screen is still ...
1
vote
3answers
122 views
restart activity in android
I have one activity A, that has one button and one list view which shows names of books . on click of the button, activity B starts, there user fill the book form and save it . when he press back ...
1
vote
1answer
126 views
Android: OnResume causes force close
I'm trying to make a simple notepad application and I would like to refresh the notes when the New Note activity finishes and the main screen resumes. However I get force close when trying to open the ...
1
vote
2answers
190 views
Android: return to main activity problems
In my main activity I have a menu and when a menu option is selected an Intent is created and a new activity is started. When that activity completes the process should return back to the main ...
1
vote
2answers
88 views
How to maintain the state of an activity at the time of clicking back button and coming back to the same activity
I have a question related to navigation between different activities and onPause and onRestore might solve the problem but how that I don't know.
The problem is
I have following screens in my ...
1
vote
1answer
341 views
Get parameters from the intent used for onResume()
I'm using a LocalActivityManager to have activities in different tabs, when I switch from a tab to another one, I start the activity corresponding to the tab selected.
My problem is simple :
if I ...
1
vote
1answer
316 views
onDestroy gets called each time the screen goes on
my application gets killed each time it comes back from the screen-off-state. i fetch all the informations which my app does but i can't find out why it calls onDestroy. It's the first time i see this ...
1
vote
1answer
88 views
Android 2.1.2, Device is locked but it seems onPause and onResume is called multiple times
I have an application which uses the MediaPlayer to play music.
When I play music and lock my device it starts to call onPause and onResume in various periods of time, ( it's not the time of one track ...
1
vote
1answer
527 views
OnClickListener not firing until onResume()
I've got an activity in which several Views animate. The animations are triggered when a RelativeLayout containing a few images is clicked. It's set up in onCreate() like this:
...
1
vote
4answers
275 views
How to return to the same activity instance after resuming it?
The problem is somewhat odd and after having trying to figure it out for about a day now, I am posting it here.
I have an application where an activity A(main activity) launches other activities(B,C ...
1
vote
4answers
230 views
Android: Updating SharedPrefereces on activity resume doesn't work
I've got an "activity a" which reads some values from SharedPreferences and display them in a TextView, then I call "activity b" where the values from SharedPreferences get updated and written back to ...
1
vote
1answer
447 views
android database already close onResume
my application has an issue where if I go back to an activity I get an error that the database has been closed:
ERROR/AndroidRuntime(3566): Caused by: java.lang.IllegalStateException: database ...
1
vote
0answers
470 views
Android startActivity vs HOME Button
I have a mainactivity. In the AndroidManifest I have declared.
android:clearTaskOnLaunch="true"
This should bring me to this activity, every time the app is ended with the HOME Button and call ...
1
vote
1answer
849 views
After Android onResume ListView is empty
I have a ListView which onResume I am trying to populate with data from a SQL Lite Database. During resume I add a click listener and repopulate the List View. The onResume, populateListView(), and ...
1
vote
2answers
285 views
Android - Clear existing objects and variables in memory when returning to Log In screen
I have an issue where if my user is on the Dashboard screen and presses the phones 'Back' button, this will then return them to the login screen (which still has their details input) and if they login ...
1
vote
3answers
1k views
Why onResume is called when i open for the first time the tab of a tabhost?
i have a tabhost with some tabs, and each tab have implemented the method onresume, because i need to reload all the data from a remote database each time the user enter again in a tabhost, not only ...
1
vote
1answer
721 views
onPause difference between screen lock and incoming call
I'm developing an audio application. It plays sounds in the background and I want it to turn off when an incoming call happens but not when the screen locks.
My first chance was to call player.stop() ...
0
votes
3answers
41 views
Android onResume update list adapter
I'm using a list adapter to show different stores, when someone selects a store it takes them to a new activity where they can add the store to favorite on that screen. There is a Back button on that ...
0
votes
0answers
25 views
Spinner is Empty after OnResume
So I am writing an app that utilizes a spinner backed by a simplecursoradapter. However, when I activate another intent, let's say the camera, and it returns, I have to reinitialize the cursor. This ...
0
votes
1answer
27 views
OnResume Activity throwing error, Source Look-Up Fail
So the super comes from MingleActivity, which extends Activity.It keeps throwing an error at ActivityThread.performResumeActivity(IBinder, boolean). My Try/Catch simply throws a ...
0
votes
0answers
22 views
WidgetLocker onResume onPause
I am developing an Android application that relies heavily on the accelerometer. Because of this, I really need to make sure that the onResume and onPause events are handled correctly.
My ...
0
votes
3answers
47 views
Is it possible to resume always to default activity?
I'd like to resume any activity in my application to default one.
Is it possible or not?
0
votes
0answers
87 views
Android Activity onResume() and onActivityResult() conflict
Have a problem. In my main Activity I have a ListView. And I need to refresh it any time I returned to this Activity. I use onResume() method for this:
@Override
protected void onResume() {
...
0
votes
0answers
13 views
BluetoothChat synchronized onResume Activity lifecycle method, why?
I'm studying right now the bluetooth Android API, and I ran into the BluetoothChat example.
http://developer.android.com/resources/samples/BluetoothChat/index.html
It contains many errors, first of ...
0
votes
0answers
40 views
Android: updating buttons in a SlidingDrawer in onResume()
I've got about 15 buttons in a TableLayout inside a SlidingDrawer. These buttons are set during onCreate() to values gathered from a ListPreference array. This all works fine.
Unfortunately, they ...
0
votes
0answers
56 views
Android subfragments onResume() issue
___________________________
| ________ ________ |
| | | | | |
| | | | | |
| | | | | |
| | a1 | | a2 | |
| | | | ...
0
votes
1answer
52 views
android onresume?
I have an app that works perfectly fine after tons of testing, but when I exit out of the app (hit home screen) and let it sit for a while and come back to the app, I just have a black screen. I have ...
0
votes
1answer
48 views
onResume does not works ok on first time executed
I'm having a weird issue. In the onResume method I do some stuff like start runnables (for timers), load an animation... When the activity is first created, the onResume is executed, but all this ...
0
votes
0answers
35 views
videoView reloads video from starting when activity paused
I have two activities A and B. In activity A i am playing a video and after some time i will pause the video on activity A and start the Activity B which again will play a video ad on it for few ...
0
votes
1answer
126 views
blank screen after onResume when using GLES
I'm having a problem where when I get an onResume, I re create the EGL and GLES state from scratch, but it won't draw anything any longer. The important code is identical between the initial create ...
0
votes
2answers
60 views
Android object value changed when resume
I got a VERY STRANGE situation...(to me)
For example, 2 objects,
1 is an activity member boolean called isInPage,
2 is a static bitmap object called bmpPhoto.
When I get into my own activity called ...
0
votes
0answers
38 views
Android OAuth CALLBACK URL and activity restarts from onCreate, not form onResume()
I'm having some problems when users come back from Twitter during OAuth authentification. CALLBACK_URL works fine myapp://callbackurl, manifest ok, etc. The problem is that when the CALLBACK URL ...
0
votes
1answer
100 views
ANDROID activity force stop on restart
I've looked through a lot of other threads about this but haven't had any luck yet with their solutions.
When I launch my app for the first time, I noticed that onResume is being called after ...