The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
46 views

What's the difference between the webrole onStart() event and Application_Start() global.asax event?

I'm just starting to get my feet wet learning the technical details of Azure, so apologies if this is a silly question. If I create a cloud service project in visual studio and add a webrole for an ...
0
votes
1answer
50 views

ListView doesn't visually update its content after notifyDataSetChanged

I have a static array of items which is set to a listview, that I might modify from another Activity (add some more items to it). So when I turn back to first activity, I have to refresh the content ...
0
votes
1answer
14 views

Activity Lifecycle - onStart, onStop

I've read all the documents and explains the lifecycle, but one thing I'm missing is: Does onStop and onStart have to be present (even if they are empty methods) in the Activity for the activity to ...
2
votes
3answers
61 views

How to run a task when a windows service starts?

I have a windows service and I've written the code to run the task within the OnStart() event: protected override void OnStart(string[] args) { this.DoTask(); } private ...
0
votes
3answers
93 views

Call a method when timer counts down to 0

I'm writing a C# service and its main function is to pull photos from a database and save them to a directory twice a day. This operation takes about 15 minutes typically (there are a lot of photos). ...
1
vote
1answer
50 views

Azure- Substantial performance degradation when moving CreateTableIfNotExist()code from Run() to OnStart()

I have a worker role which does some processing involving Azure storage. The overall performance gets degraded if I move CreateTableIfNotExist() code from workerrole’s Run() method to OnStart() ...
0
votes
1answer
29 views

Where the logs from Global.java go?

I'm testing the last stable version of play framework. I created the Global.java class and overridden the method onStart where I put the Logger.info("test..."); And I can't see the this ...
0
votes
3answers
1k views

android.os.NetworkOnMainThreadException on service start on android

after trying my brand new service on android i get this: i guess is something related to the manifest file and permissions, the service is started after the last activity, to update data on server ...
0
votes
0answers
86 views

overridependingtransition in onBackPressed()

i have two activities A and B. Usually when i return from B to A with the BackButton Activity B slided out of the frame. I did that with this code: @Override protected void onPause() { ...
0
votes
3answers
109 views

Error on Opening ASyncTask in onStart

In my application, on every start of the application I want to execute a php script and load the application accordingly. Hence I created a static boolean varialble boolean firstRun = false; In my ...
0
votes
3answers
393 views

getIntent() method is undefined inside of onStartCommand() method of android service

Does anyone know why my getIntent() method is undefined for the android service and inside of the onStartCommand() method? @Override public int onStartCommand(Intent intent, int flags, int ...
0
votes
0answers
294 views

How to call a function repeatedly at fixed intervals using Android Service?

Here's my code i want to call that log again and again, after fixed interval but some how there is some problem. @Override public void onStart(Intent intent, int startId) { ...
0
votes
4answers
252 views

Resume activity in Android

I have an app with 3 activities. I have the main activity. This calls the second activity, which then calls the third activity. I want return to the main activity without entering the onCreate. This ...
1
vote
1answer
68 views

Custom style for activity - OnStart doesn't work

I am kind of newbie here. But would like to ask you guys for help. so what my app is doing. In activity#1 I have : protected void onStart() where I run void run() there's a loop that increases int ...
2
votes
3answers
290 views

Where do I put the bulk of my code when writing a windows service?

I am getting into windows services and looking over some tutorials, but they are all very dumbed down. They usually involve printing something out in the overridden OnStart method. That sounds like it ...
1
vote
1answer
1k views

NetworkOnMainThreadException error in jellybean

I've been trying to get this to work for the last week or so and still have no idea what the problem is. it works on android 2.1 but not on 4.1. ive got this string in a service that check for updates ...
0
votes
0answers
187 views

how to cancel fancybox from an AJAX callback within onStart

I am loading a login form within a fancybox. If the user has the site open in two browser tabs, and logs in in the first tab, and then clicks the login link in the second tab, I want to avoid opening ...
1
vote
2answers
839 views

Start animation when fragment is visible on ViewPager

I'm using a ViewPager together with a FragmentStatePagerAdapter, and I would like to launch an animation in a fragment when this fragment is visible and only when it is visible. The problem is that ...
0
votes
1answer
128 views

Bluetooth discoverable status on application start

How can we have the bluetooth discoverable status on application start I have an Image view for showing the status but its not showing the appropriate Image on start of applicaton In oncreate() I ...
-2
votes
2answers
68 views

when an activity starts but when do we use onStart()

I know we call onCreate() when an activity starts but when do we use onStart() please help me to understand onStart() better thanks in advance
3
votes
2answers
395 views

What comes between onCreate and onStart for Android?

I see from Android Developers (http://developer.android.com/reference/android/app/Activity.html) that there is a nice flowchart showing onCreate leading to onStart then to onResume, and so forth. My ...
0
votes
1answer
91 views

Is it better to put Facebook SSO in onCreate or onStart Method?

Is it better to put the Facebook Single Sign on Authentication process in the onCreate or onStart method? In the facebook tutorial si never said to preferably put in either one of them, but doing ...
2
votes
3answers
340 views

Wait/Sleep inside Azure WebRole OnStart method

Is it a good practice to Wait/Sleep inside the RoleEntryPoint.OnStart method of a webrole? We want to make sure our service is fully ready before we tell Azure that we are ready to service request.
0
votes
5answers
236 views

Need help understanding where to put a piece of code, onCreate()/OnStart

I've tried to have a look at the acitivity lifecycle but I still don't understand where to put my code. In my onCreate() I get the GPS Location. Sometime later in the application, the Camera Intent ...
0
votes
2answers
105 views

Installing a WindowsService for debugging

I am trying to start my debug build WindowsService but am getting the error that it didn't start in a timely fashion. I've cleaned up the ctor and OnStart but still it won't start so I am thinking ...
2
votes
1answer
481 views

Should onStart still 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
votes
1answer
168 views

How to convert Mootools code to jQuery code for slide down, then scroll to #current?

I was wondering there type of API like onStart and onComplete from Mootools, it makes me curious where i get those APIs for jQuery... there an example script: var slidez = null; function ...
0
votes
2answers
120 views

Android Activities Question

Where do i declare a custom button in my main activity class? Can it be on the onStart Method or will it only work in the onCreate Method? Any Help would be appreciated? Also to further illustrate ...
15
votes
3answers
20k views

Difference between onCreate() and onStart()? [duplicate]

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 ...
7
votes
6answers
11k views

ActionBar pre Honeycomb

I am writing an app for android (2.1 > 3.1) and I would like to use the familiar practice of using the app Icon in Honeycomb apps to go up to the home activity, however, when I run the activity on ...
1
vote
1answer
2k views

Problem with unregister BroadcastReceiver

in my app I've a service that register a BroadcastReceiver into onStart() method: public void onStart() { if(something....) { IntentFilter filter = new ...
5
votes
2answers
3k 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
610 views

Working with onPause, onRestart, in Tab Widget - Android

I have a ListView that is inside a TabWidget. When I select an item on the ListView and go to the child ListView, the TabWidget disappears. This is fine, except that it invokes the onPause method, and ...
2
votes
3answers
358 views

How to display an image on start of a wpf app?

Hi I have a wpf application in mvvm pattern. In main view, I have few links to other views. But before displaying the contents(that is ... the links) in main view, I need to display an image in main ...
3
votes
2answers
2k views

Signalling Initialization Failure from Service.OnStart

We have a case where during Service startup (OnStart), a worker thread is started. The worker thread connects to a SQL database. If the database is unavailable, the worker thread can signal the main ...
2
votes
10answers
377 views

What's the best way to load highly re-used data in a .net web application

Let's say I have a list of categories for navigation on a web app. Rather than selecting from the database for evey user, should I add a function call in the application_onStart of the global.asax to ...