The oncreate tag has no wiki summary.
12
votes
3answers
5k views
Android - Activity Constructor vs onCreate
I understand that Android Activities have specific lifecycles and that onCreate should be overridden and used for initialization, but what exactly happens in the constructor? Are there any cases when ...
7
votes
2answers
3k views
Start an Activity with a parameter
I'm very new on Android development.
I want to create and start an activity to show information about a game. I show that information I need a gameId.
How can I pass this game ID to the activity? ...
5
votes
3answers
773 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 ...
5
votes
5answers
282 views
Is there a problem with both overriding a Delphi form constructor, _and_ using it's OnCreate event?
Delphi help says either override a form's constructor, or use the OnCreate event. But don't do both. What's the reason for this? The only thing I can see, is if inherited is left out of the ...
4
votes
5answers
438 views
Android Chronometer, retain time state (and keep counting in background)
I have a timer that counts up from the time a user encounters that activity
I am currently using a Chronometer set during onCreate (initially started only when certain conditions are met). But I need ...
4
votes
1answer
113 views
How to run code on Application opens in Android?
My Android app need the user to create an account to be able to use the app. The account info is stored in sqlite database. When the application starts I check if the user has an account, if not I ...
4
votes
4answers
1k views
Difference between onCreate() and onStart()? [closed]
Possible Duplicate:
Android Activity Life Cycle - difference between onPause() and OnStop()
I was wondering what is the difference between onCreate() and onStart() methods?
I think that ...
3
votes
2answers
198 views
onCreate flow continues after finish()
I would like to finish an activity from inside the onCreate method. When I call finish(), onDestroy() is not immediately called, the code keeps flowing past finish(). onDestroy() isn't called until ...
3
votes
1answer
519 views
Android: When is onCreateOptionsMenu called during Activity lifecycle?
I put a couple of breakpoints in onCreate (one at the beginning, and one at the end of the method), and I also put one at the beginning of onCreateOptionsMenu. The onCreate method is called first, and ...
3
votes
2answers
619 views
sqlite onCreate() problem I want my database created once,and it will not changed,but i can't create data when i'm in onCreate()
I want my database created once,and it will not changed,but i can't create data when i'm in onCreate()...
public class EventsData extends SQLiteOpenHelper {
private static final String ...
2
votes
1answer
31 views
Android & Bundles
what is the difference between: myBundle & the one returned by getArguments()
@Override
public void onCreate(Bundle myBundle) { //on create() belonging to a Fragment
...
2
votes
2answers
76 views
How to tell if the user has finally quit all your activities in android application
I want to set ringvolume to 0 when a user opens my teaching application then return it to the original volume when the user quits. What's the best way of doing this?
I can set volume to 0 with no ...
2
votes
1answer
33 views
Android SQLite - why is my db re-created each time?
I'm trying to get a better understanding of the SQLiteOpenHelper class and how and when onCreate and onUpgrade are called.
My problem is that each time I quit and start my application (technically ...
2
votes
3answers
96 views
Can I use setContentView outside the oncreate method?
I have seen many people telling that you can set setContentView outside the oncreate method, but I didn't find anywhere an example. Now when I try to use setContentView, my app just crashes. Here is ...
2
votes
2answers
275 views
When does Application's onCreate() method is called on Android?
In my Android application I have a DefaultApplication class which extends android.app.Application and in DefaultApplication onCreate method I bind some services which will be used by my other ...
2
votes
6answers
415 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
3answers
4k 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
0answers
348 views
App runs onCreate() twice on AVD with Android 3.0 due to unexpected configuration change
I have a simple android app, built for API level 7. The only uncommon thing is that it has android:screenOrientation="portrait" in its manifest. Also in its manifest the API levels are specified as ...
2
votes
1answer
676 views
calling a method from android service immediately after it's bound on onCreate
I'm pretty sure that android services are going to be the end of me. I have almost no hair left after the last few days....
...anyway, I digress.
At first I was having a heck of a time getting the ...
2
votes
2answers
388 views
Model OnCreate Event for Delphi Frame
I am developing a Delphi frame and need to load a list of business objects into a grid control at the beginning. Delphi frames have no OnCreate event, so what is the best way to replicate this? ...
2
votes
1answer
530 views
Can you please explain onCreate and Bundles?
I have been looking it up and I just cant seem to wrap myself around the onCreate and Bundles. I understand that the onCreate is called when the program starts but its how the Bundles get passed ...
1
vote
2answers
50 views
Android onCreate is not being called?
The problem is onCreate() is not being called! I really have no idea what the cause is, but I know that the Log.d()'s are not being called in onCreate() and in onSurfaceCreated(). I am trying to use ...
1
vote
2answers
36 views
Android Sliding Drawer Open On Create
I want to have a slider that is open when the app starts. It will be open with buttons and such and when the user closes it, there will be more buttons to access. Is this possible with a sliding ...
1
vote
2answers
100 views
Helper Class - Error Unable to start activity ComponentInfo:
Error Unable to start activity ComponentInfo: java.lang.IllegalStateException: System services not available to Activities before onCreate()
I´m experimenting with seperating the code and the use of ...
1
vote
1answer
72 views
Local Service Binding Code from Activity to Service
The client code for binding to a service, which is normally in the activity class; I'm trying to move it to the service class, so that the activity class would be as clean and small as possible.
...
1
vote
3answers
100 views
Android SDK equivlent for viewWillAppear (iOS)?
Situation
I have a fairly simple app with 2 "layouts" using SharedPreferences.
Main.xml
Settings.xml
Main has a textView that uses getString from SharedPreferences. Also a button to open ...
1
vote
4answers
49 views
Android: Possible to place a HTTP request outside onCreate in Activity?
I'm new to Android and trying to figure out where to place a HTTP request in order to make it execute only once (when the Activity first become visible). onCreate is always called when returning from ...
1
vote
2answers
97 views
Exchange data between activities without using oncreate
I have realized one application with Android which contain two parts (activities)
1- Main activity receive GPs, calculate X,Y pixels on a Map
2- Showing/scrolling map after loading it from SD card.
...
1
vote
2answers
154 views
Android Edittext: Get LineCount in an Activity's onCreate()
How can I do getLineCount() of an Edittext in the onCreate() method of an activity, having changed the Edittext's text, like the following:
@override
public void onCreate(Bundle ...
1
vote
1answer
71 views
Should onStart sill run if you stop a service during onCreate
From my understanding of application lifecycle (including services) it should go onCreate > onStart > onResume.
Based on this understanding, if you shut down the cycle with a this.stopSelf() in the ...
1
vote
0answers
65 views
Activity gets killed but saved bundle is not received in onCreate
I have an application that works without fragments.
I modified an activity to use fragments.
The problem is that now when the activity goes in background and then in foreground again the onCreate is ...
1
vote
2answers
406 views
Android service onCreate is called multiple times without calling onDestroy
In my app, I use a service to communicate with our server. The service spawns several message queue threads to deal with tasks with different priorities.
This model has been used for about one year ...
1
vote
2answers
108 views
android: how to return
this is rather a very rare question and quite an unusual one.. In my onCreate () method, i first check if sd-card is mounted or not. if it is unmounted then i simply use return; so that no further ...
1
vote
3answers
257 views
Image on start up / loading
I ma developing an app, which at the moment when it is loading from the onCreate point, I just have a black screen (until the app gets its footing). Looking at other apps they have a company logo or ...
1
vote
1answer
239 views
Android - Tell if parent activity has been destroyed
So, I have written an app that has a Main activity (A), and various other sub-activities that all do something, report the work back to main, and finish.
What I am running into is that if the user ...
1
vote
1answer
487 views
Side effects of calling Activity.setContentView() twice in a row
In my app I needed to call findViewbyId() from both onCreate() and from WebChromeClient.onCompletion(). To avoid findViewbyId() returning null I resorted to calling Activity.setContentView(int ...
1
vote
0answers
86 views
SQLite - Getting an FC at time of DB creation
DISREGARD this question, I found my problem...just edited the question to include the correct code jut in case someone looks for a correct database sample :D
My application force closes every time I ...
1
vote
3answers
165 views
How do I perform these Android/Eclipse excercises?
Add a logging to your Droid1 project. Within the onCreate() callback method, add an informational logging message, using the Log.i() method. Run the application and view the log results.
[For ...
1
vote
1answer
1k views
AlertDialog with spinner on start of activity
I am trying to create an AlertDialog with a spinner on the start of an activity. I have the following code within the activity's onCreate() method.
AlertDialog.Builder builder = new ...
1
vote
1answer
823 views
Android how to load a new layout
I'm trying to load a new layout when I click a button, this layout has only a webView in it so my goal is, when the button is clicked that it opens the webView and directs the user to a pre-determined ...
1
vote
2answers
3k views
SQLiteOpenHelper failing to call onCreate?
I am trying to create a local database on the android phone using sqlite. I have a helper class, shown below, that is used to create the database and provide the "help". I am wanting to create an ...
1
vote
3answers
925 views
NullPointerException in Android Program in onCreate()
I am fairly new to android and am writing an app that will solve physics problems. The math is going well thanks to some help from these forums, but when I try to start my activity from a list it ...
1
vote
1answer
114 views
How can i take data from the onCreate method and put it on the onClick
so basically i created a URL in the onCreate method, and i want to pass it with an intent just when i click on a button. The URL is created but i can't send it to The NeXT activity because it's just ...
1
vote
2answers
1k views
Changing screen orientation issue: onCreate
I have an issue when changing my screen orientation. I have an activity with 2 intents that gets called by a service.
When I rotate the screen, going into landscape mode, it recalls onCreate. The ...
1
vote
3answers
682 views
Returning to main menu in android by a button click
In android, my app provides a button that the user can click to return them back to the screen that appears when the app is opened (onCreate).
How can I set that button to return the user to the main ...
1
vote
2answers
126 views
Orientation issue on android
Currently I am working on audio streaming on android. All method I have written related to streaming and playing the audio is in the onCreate() method. The problem is when ever I change into portrait ...
1
vote
0answers
283 views
Android AsyncTask and
Hi i have an AsyncTask in my application called in OnCreate() that retrieve some data over the web and display an indeterminate progress bar while downloading.
The problem is when i start the app the ...
1
vote
2answers
1k views
How to wait for service on activity start
I am making an application that has Activity which communicates with a single service, and is used to start, stop or change settings of that service. I used a singleton approach from this tip.
My ...
1
vote
3answers
387 views
Delphi - when to call DragAcceptFiles
I have
procedure TMainForm.FormCreate(Sender: TObject);
begin
DragAcceptFiles (Handle, True ) ;
end ;
but the form does not accept dragged files - no drop cursor, no firing of WM_DROPFILES ...
1
vote
7answers
1k views
App crashes after receving phone call
After I either receive a phone call or make one, (and other undocumented interruptions) my application gets a NullPointerException when resuming my activity. Can any explain to me where it is and/or ...