onCreate refers to one of the lifecycle methods for several components on the Android platform.

learn more… | top users | synonyms

0
votes
0answers
21 views

Android LifeCycle for Activities and thei subcomponents

I get from time to time in my app the following stacktrace from a crash: java.lang.IllegalStateException: System services not available to Activities before onCreate() at ...
-3
votes
4answers
47 views

which one is called first static block or oncreate method?

I want to know which is executed first static block or Oncreate method public class MainActivity extends Activity { static{ // dosomething } @Override protected void onCreate(Bundle ...
0
votes
2answers
43 views

calling onCreate method from inside another method

I have never seen anyone explicitly call one of the system callback methods like onCreate() or onDestroy() from inside another method. It just looks wrong. I thought I saw this in some example and I ...
2
votes
1answer
49 views

Why does my service calls its onCreate() itself while running?

I have a Service in my android application which stop only when quitting the application. public class MyService extends Service { public MyService() { } @Override public int ...
0
votes
1answer
41 views

How to stop setOnItemSelectedListener from running in onCreate [duplicate]

I set values in my setOnItemSelectedListener depending on what is selected in my spinner. How can I stop this method being called onCreate? Thanks in advance
0
votes
1answer
44 views

Load Data setOnItemSelectedListener

Problem: I load my class, the setOnItemSelectedListener function runs and sets variable wattage to a specific value, depending on what item was selected in the spinner. How can I prevent ...
0
votes
1answer
12 views

How to call a method with View param

I have a source code of an app for android which get location from network or gps. There is the next code: // Callback method for the "both providers" button. public void useCoarseFineProviders(View ...
1
vote
2answers
59 views

Android: avoid calling onCreate() when back from another activity

Assume my application contains two activity, A and B. Both are limited to portrait in AndroidManifest. Activity A started Activity B. In Activity B, there is a button, which calls finish() when ...
0
votes
5answers
49 views

How to launch again the actual onCreate on Android? [duplicate]

For example, if i have a button called "Restart", and I want to launch again the onCreate where the app is actually.
0
votes
3answers
47 views

String doesn´t take value

I´ve got an onCheckedChanged that tells me if a RadioButton in a RadioGroup is pushed. RadioGroup rGroup = (RadioGroup)findViewById(R.id.rdgroup); // This will get the radiobutton in the ...
0
votes
0answers
14 views

AsyncTask re-executing onresume

I have this little problem. I fetch data from network into a ListView using AsyncTask. If I press on an item it takes me to another activity. Then, if I press the 'back' button, the AsyncTask does ...
0
votes
0answers
8 views

How to avoid Data Reloading in the page layout when unlock the phone in Android?

I have created one app in Android which loads data from database. When I lock the phone and unlock it again, different data loaded in the same page layout? Can anyone please help how to avoid data ...
0
votes
0answers
40 views

Exception on create JaxWsServerFactoryBean

I have old maven project and now i need to add clien-server module into this project. I added this dependencies: cxf-rt-frontend-jaxws cxf-rt-transports-http-jetty After I created next classes ...
0
votes
1answer
40 views

Android onCreate is called after locking the screen

When I lock the screen while my app is running "on top", the system calls almost immediately onCreate (screen is still black). What could be the reason for this destructive behaviour?
0
votes
1answer
35 views

Why do my buttons not return to invisible setting when i press back and reload search

I am making an app to search a database and i have a part where i type in a search detail and the name of the possible results are displayed on buttons in a new activity. It works fine first time ...
0
votes
0answers
46 views

Trying to set alarm manager after reboot, keep getting System services not available before on create error

I am trying to reset the alarms that were lost as a result of the phone rebooting however something about the way I am doing it is giving me the error "system services not available to Activities ...
0
votes
0answers
24 views

Android - How do deI recall the visibility of a table when the program is reopened? (Newbie)

I am trying to make an android app that has some check boxes that hide things after they are clicked. Everything works well until you close and reopen. My code that hides things is using ...
0
votes
1answer
58 views

Force splash to show from onCreate Activity

My app has the following Activities: DashboardActivity SplashActivity MainActivity This how the flow is required: The dash board has a button that starts up the MainActivity. The onCreate() method ...
0
votes
0answers
42 views

onCreate() in ContentProvider is not being called

onCreate() method in ContentProvider is not being called. Though when I click on a button, it goes inside insert() method and returns java.lang.NullPointerException. In onCreate() method I have only ...
3
votes
3answers
172 views

Can't create SQLite database in my android app

I'm using my application object(Android building bloc) to call the database constructor inside my oncreate method. But i can't figure out why it can't be created. This is how my code looks like: my ...
-1
votes
1answer
46 views

what is the differences between 2 ways to implement for listView, android

I am learning Android right now and working on the list view to display multiples items for the list. It might be stupid question but I have to ask to find down the reason behind the scenes ( if there ...
0
votes
0answers
32 views

sharedpreferences not getting the value 1 out of 3 times?

I tried many of the shared preferences questions, but I am still facing some issues. I am trying to store a single double value in the internal storage, and it's not working. I am calling the save ...
0
votes
2answers
48 views

onCreate() executes in forever loop

App's basic idea is: 1) BroadcastReceiver, receives an SMS 2) when SMS is received, another activity is called which sends another sms. The issue is that , when BroadcastReceiver calls the other ...
0
votes
4answers
51 views

Android: Exit activity while it is created

Suppose I have code like this: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_msmap); setUpMapIfNeeded(); if ...
0
votes
2answers
60 views

same item value when accessed with getIntent() in other activity

My code flow is: Reports => ReportsType Reports is having 3 items and on click of each item, I am starting the activity ReportsType passing the tag with the name name in the intent to distinguish ...
0
votes
1answer
55 views

has stopped , window leaked , zygoteInit

I'm working on android to create a list to add tasks , there are many error when I run it and the emulator started. I tried hard to solve them but I couldn't and I think the problem in one class which ...
0
votes
3answers
57 views

Update values in MainActivity every time when opened

How can I call onCreate of the MainActivity every time I'm opening it? I want to do this: I open my app and this is my MainActivity, then I open ActivityB and save some data. When I close my ...
3
votes
1answer
2k views

Error: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length

I got a problem with my android app. I got a button and and event associated , but when I click the first time an error appears "spans cannot have zero lenght". . But when I click the second ...
0
votes
1answer
40 views

resuming activity in Android using Service

I have a mainActivity. When starts, it starts a service and bonds it. There is a timer which will send the mainActivity (this) to back after X seconds, while the service keep running and listening, i ...
0
votes
1answer
102 views

codeEt.setText(extras.getString(“code”)); causes NullPointerException

How is it possible to resolve a NullPointerException on line 48 of the following source: codeEt.setText(extras.getString("code")); I've looked this section of the code up and down and I cannot ...
0
votes
2answers
65 views

A finished Activity re-created after a coincident orientation change

I don't know if this behavior is normal because I suppose a call to finish() would stop the activity from being re-created. Here is an excerpt of the activity class: public class MyActivity extends ...
0
votes
1answer
54 views

parse.initialize error for parse.com

This should be an easy fix. But I am a new programmer. I can't find answers anywhere. I just started building my app, (For the second time. My computer was stolen so lost all my previous work.) I am ...
0
votes
1answer
176 views

SQLiteException: table already exists (code 1)

FINAL EDIT, ISSUE "SOLVED" So what I ended up doing as per the answer accepted, I removed the constructor that took a database version as params, but that still caused the exception. So as also ...
0
votes
1answer
28 views

are android actions done in order as written in onCreate?

I want to know if these actions are done in order or not inside on create mWebView.loadUrl("file:///android_asset/game.swf"); AdView adView = (AdView)this.findViewById(R.id.adView); ...
0
votes
2answers
79 views

Dynamically setting RadioButton checked

I'm developing Android app and I have one problem. I have Radiobutton group: <RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content" > <RadioButton ...
0
votes
1answer
86 views

How to store data in android for a long time?

I am trying to develop android application (first time), so I'm using SQLite to store data. But every time I run the application all data are null! I think the problem is when I run the application it ...
0
votes
0answers
43 views

Setting Value on Start

Anyone can help me with this issue? Iam trying to find a way but i cant get a solution for it. Problem There is a lat and lng value iam calling from cursor. how I can put them into textview already ...
0
votes
1answer
57 views

Android reload textViews on button tap

in an activity I load some text values from a custom object. These text values go into textViews, the textViews are displayed on screen. I have previous and next buttons that, when tapped, should ...
0
votes
1answer
72 views

How to create a file in the internal storage only during the installation process?

I would like to know how to create a file in the internal storage only during the .apk installing. My problem is that when I put the file with the onCreate method of MainActivity, everytime I ...
0
votes
2answers
126 views

Getting intent extra and the onCreate method?

I have classes A, B and C. Class A sends intent to B, B runs C, C returns to B.....but then inside of the onCreate of the B class it wants the intent of Class A. But because its come from class C it ...
0
votes
1answer
49 views

How to draw to canvas on onResume

I have an android app that draws to a canvas. Up to now I've been drawing each time I create the app usine onCreate as such: package com.example.drawdemo; import android.app.Activity; import ...
2
votes
2answers
154 views

Android: Where to put activity's onCreate() code in a fragment?

I'm converting all my Activities to Fragments so that I can use them in a ViewPager. I've searched for this but I couldn't find a satisfying answer, so that's why I'm asking it here. In my ...
0
votes
1answer
142 views

android: get dimension of extended view using addOnGlobalLayoutListener but fails

I am implementing the following addOnGlobalLayoutListener so as to measure the Extended View (doodleView) in main activity (A)'s OnCreate section. doodleView = (DoodleView) ...
0
votes
1answer
173 views

Android calling onCreate() after finish() when in landscape

I have an activity that starts the Vibrator system service in its onCreate method, then when the user pushes a button it cancels the vibrator, then calls finish() to close the activity. This activity ...
0
votes
3answers
194 views

why onCreate reload agoin on orientation change

currently i am designing an application in which i have a list and alphabetic scrollbar for the list. To load the data in list, i am calling a method in onCreate and also calling one method to build ...
0
votes
2answers
50 views

Android Beginner Save/Load small information

I am looking to save/load a very easy application in android. The thought would be checking if a file exists in the onCreate() method and if it does load the settings in onCreate. Is this the right ...
0
votes
2answers
172 views

Android onCreate and AsyncTask delay

My app needs to load some JSON before it can show anything on the UI, the JSON determines how the app should be themed. Although I don't usually like them, a splash screen / loading screen is ...
0
votes
1answer
49 views

Android spinner reports null value in oncreate

I have this code in my onCreate and I get a null pointer exception if I uncomment the sortMode(position) line. The log works just fine though, which seems weird to me. What am I doing wrong? I want ...
0
votes
1answer
91 views

Android - Cannot change layout using v4 Fragments

My users should be able to change (using preferences) how the interface looks like (visually enabling and disabling certain layouts dynamically) in my app. I'm working with the v4 ViewPager ...
0
votes
1answer
30 views

Button resets when opening app via notification

I've created an application where you press "start logging" which starts a service that periodically logs data. The button changes to show "stop logging". You then minimize the application and allow ...

1 2 3 4 5 7