Tagged Questions
1
vote
3answers
72 views
Android Loader vs AsyncTask on button tap
I have an activity which requires no data from server on load - just plain init for ui
UI has several buttons.
User clicks one of them and app sends request to server (rest call)
While request is ...
-4
votes
0answers
19 views
stop a AsyncTask to end an activity [HELP] [duplicate]
I have a so called AsyncTask same.
I want to change AsyncTask stop activity.
How I can do?
sorry for my English.
Thank you.
0
votes
1answer
47 views
Cannot close Activity from AlertDialog called in PostExecute
I have a couple of Activities both of which send files up to the internet.
I would like to put the posting procedure into a separate class file so that the same procedure is called for each activity.
...
-1
votes
7answers
127 views
Android: Communication and coordination between UI-thread and other thread
I'm using this AsyncTask for calling the skype page https://login.skype.com/json/validator?new_username=username for understand if a certain skype contact already exsists.
public class ...
0
votes
2answers
45 views
Android: Asynchronous process using AsyncTask for connecting to internet
For my Android app I need to call a web page from activity, and wait until a response is received from remote server. So I think I need to use a new thread. Can I use AsynkTask? How can I tell to my ...
2
votes
1answer
284 views
android AsyncTask with activity lifecycle
Am using AsyncTask in order to download images within my activity
the flow goes like this:
protected void onPreExecute() {
\\begin animation
}
protected IUpiResponse ...
0
votes
2answers
173 views
Toogle ProgressBar from different AsyncTask Class return NullPointerException
I want to do Asychronous task on android, I made that on different class rather inside the activity. My problem is when I want to set ProgressBar visibility from INVISIBLE to GONE it return ...
0
votes
1answer
210 views
Pass Variables from AsyncTask back to calling to Activity
I am new to Android Development and have a question (will probably show my newbie status). I am calling an asynchtask from a custom activity. Once the asynch task is completed onPostExecute I would ...
0
votes
3answers
159 views
Showing Dialog in the current Activity
I'm writing a game. When user ends level, these things happen:
Send a POST, to check if the level record was beaten. (1-5 seconds)
If it was so, show a Dialog "enter your name". (fast)
When user ...
2
votes
2answers
587 views
How to show loading message or dialog or image in an android activity while processing before the activity is finished?
I have an Activity "A1" and a ListActivity "A2"
I take inputs from user in Activity "A1" and depending on the inputs given by user I process and generate a result list. The list generated will then ...
0
votes
4answers
3k views
Android: How to update an UI from AsyncTask if AsyncTask is in a separate class?
I hate inner class.
I've a main activity who launches a 'short-life' AsyncTask.
AsyncTask is in a separate file, is not an inner class of main activity
I need async task updates a textView from ...
-2
votes
2answers
147 views
How to open AsyncTask from a Thread
In my application I have created a SplashScreen that will b shown for 5 Seconds and after that it executes an if else case depending upon the values stored in the Preference file. If Preference file ...
0
votes
2answers
576 views
How to finish Activity from AsyncTask Android
In my Application I have 3 Activities:
1. Login
2. AsyncTask (different class)
3. Welcome
After receiving all the information in the Login Activity it moves to the AsyncTask Activity. When the the ...
1
vote
2answers
128 views
AsyncTask is not working
I have splash activity that should download data from the url parse it and pass it to main activity , while downloading i created layout with logo and spining gif loaded in webview ,but when i start ...
0
votes
1answer
373 views
Calling AsyncTask from another activity
I need your help I have been stuck on this for the past two days, I'm trying to call this AsyncTask from another activity and get the string that is returned but after reading several post on the net ...
1
vote
1answer
907 views
Android Calling Async Task in an activity
I have an activity that selects an image from a gridview and it allows you to save the image. I'm using Async Task for all my codes. I seperated my AsyncTask from a few classes. How do i call them ...
0
votes
3answers
121 views
counting time while activity is not visible
My app needs to count time from the moment the user clicks a button and until he clicks it again. The user should be able to "walk around" other apps and activities and when he opens my app again - ...
7
votes
1answer
6k views
Android. Fragment getActivity() sometime returns null
In developer console error reports sometime I see reports with NPE issue. I have no understand what is wrong with my code. On emulator and my device application works good without forcecloses, ...
-1
votes
3answers
2k views
AsyncTask - Return a String in postExecute to the Activity, which started the Async Task without blocking the UI Thread
I have an Activity, which starts an AsyncTask with an Implemented process dialog. That works fine! But i want to get a String return when the asyncTask has finished. So i have to return something in ...
0
votes
1answer
478 views
Progressbar in Activity with asyncTask Download in External .class-File
I have a progessbar in an activity but the Async is in an external .class-File
How do i refer to that progessbar in the async task?
i use a slightly changed version of the AsyncTask from
Download a ...
5
votes
3answers
422 views
Pattern for reusing Android AsnycTask over several Activities?
I have several Activity subclasses in my project, each calling a SOAP based web service, processing and displaying the results. The SOAP serialization, the call handling and the parsing of result into ...
0
votes
1answer
792 views
Android - android.content.Context vs android.app.Activity
I want to pass a reference of the current activity to a method of a class not extending Activity. I need to use this reference to the active activity so that I can use ...
5
votes
3answers
1k views
What does “runs on UI thread” for onPostExecute() really mean?
Consider an AsyncTask started in an Activity. What happens if the Activity is paused or destroyed? Will onPostExecute() run? If yes, what UI thread will be used?
Just wondering.
Many thanks in ...
1
vote
2answers
581 views
How to determine in onPostExecute that activity is not paused now or destroyed?
I start AsyncTask and put Context in constructor of the Task.
On onPostExecute I want to know is my activity active now and was not recreated. How it's better to do?
For this I can:
create ...
0
votes
3answers
260 views
AsyncTask with android:noHistory=“true”
In AndroidManifest.xml file, I have android:noHistory="true" attribute in an activity. In that activity, I have an AsyncTask performing a long running task. Will the AsyncTask continue to run when I ...
3
votes
3answers
863 views
After ASyncTask.execute() do x() from Activity
This is one I'm not sure how to go about.
Basically I have an ASyncTask class thats doing its business as usual in the background. I'd like to do something after its finished. Now before you jump ...
1
vote
1answer
4k views
Launch timeout has expired, giving up wake lock! Activity idle timeout for HistoryRecord. Is this something to worry about?
In my application i use AsyncTask in oncreate. Sometimes i get "Launch timeout has expired, giving up wake lock! Activity idle timeout for HistoryRecord" in the logs. Can this cause any issue, or we ...
1
vote
3answers
620 views
Android: How to pass an object from one activity to another in an onClick method and use it for an AsyncTask class
I have a problem that is a little hard to explain. I am building an android application for trip planning. I have a main activity that contains the map item and some other buttons and an AsyncTask ...
0
votes
1answer
318 views
AsyncTask reloading after changing Activity
I have a strange issue with AsyncTask. I'm using an AsyncTask to load data from my website and create a ListView with theses datas. I set a listener to each item, when i click on an item i start a new ...
3
votes
2answers
2k views
How to start an Intent from an AsyncTask
I'm trying to start an Activity in my AsyncTask from the doInBackground() method but it doesn't seem to start.
I've passed the Activity of which I call the AsyncTask from using params[0].
public ...
2
votes
2answers
354 views
Contexts, AsyncTask and rotation changes
Is it a good practice to use getApplicationContext() working with AsyncTask in order to do not have to attach and detach the Activity to avoid memory leaks when rotation changes occur and the Activity ...
2
votes
2answers
3k views
How to correctly start activity from PostExecute in Android?
I have an AsyncTask, that fills a custom List with parsed data from Internet.
In PostExecute I fill that List and get it ready to transfer it to a new Activity.
I do it this way:
@Override
...
1
vote
1answer
181 views
Recycling attributes from destroyed activities?
I have a doubt about destruction of activities and objects.
While I attach & detach the activity from the AsyncTask I do not change the ArrayAdapter from the asynctask (see code). So, what I get ...
1
vote
1answer
111 views
Code in AsyncTask isn't executing
I have an AsyncTask which is executed just before my application quits. It gets the location and also parses my layout xml file. The location is retrieved but the parsing doesn't get executed.
...
2
votes
2answers
1k views
onCreate method keeps getting called when the orientation of device changes
I have an AsyncTask which gets called onCreate() in my Main Activity. In the same Activity if the orientation changes the AsyncTask gets called again. How do I prevent this from happening or how do I ...
1
vote
4answers
368 views
is this asynctask correct?
I have my first class, its a loading screen.
public class Loading extends Activity {
public int switchscreensvalue = 0;
protected void onCreate(Bundle savedInstanceState) {
...
1
vote
1answer
264 views
OnPostExecute not working , not able to draw graph
onButtonClcick to button index , A graph should be displayed which gets the data from URL. I've used AsyncTask for the same.
I'm stuck between two approaches.
1) If I call afterload() method in ...
0
votes
1answer
113 views
starting a new activity…however only want its asynctask called only once
I have two activities
Menu (Activiy)
Contents: Button1 ----> When this is pressed (a new intent is created and shows up Submenu),
Button2, and
Button3
Submenu (Activity)
Contents: Contains an ...
0
votes
1answer
260 views
Can AsyncTask started from Activity cause problems if Activity is exited?
If I have an AsyncTask started in an Activity by user interaction. The AsyncTask, when finished, will modify the UI and execute a Toast. Let's say that the user exits the Activity before the AsyncTask ...
1
vote
2answers
914 views
Starting Activity problems in AsyncTask in android
I am facing one problem in AsyncTask in my application in Android. The problem is, I am starting another Activity from AsyncTask in my application which runs fine when its layout has simple Button, ...
0
votes
4answers
531 views
Async Task started and ended in different activities
I would like to achieve the following behaviour, but I'm not sure how:
User start an activity
Activity starts an AsyncTask
User performs some action that creates a new activity
The AsyncTask ...
6
votes
4answers
4k views
Android - Stop AsyncTask when back button is pressed and return to previous Activity
I've an AsyncTask and I want it to stip execution when back button is pressed. I also want the app to return to the previous displayed Activity. It seems I've managed in stop the Task but the app ...
2
votes
3answers
1k views
ProgressDialog dismisses after rotating the screen [duplicate]
I use a Service to upload files. While a file is being uploaded, I display a ProgressDialog.
When I rotate the screen the ProgressDialog dismisses.
How can I keep the ProgressDialog around?
I'd ...
5
votes
1answer
738 views
Android - problems with a multi-level activity chain
(Note that I've searched online for the warnings I'm describing below, and have come up with next to nothing about them.)
I'm working with API level 10. I have a preference screen (XML-based), and ...
0
votes
1answer
852 views
Creating an Android search result list
I am trying to implement the following logic:
User enters a search string in a text box (an activity) -> Web service is called to perform the search asynchronously -> Search results are displayed in ...
0
votes
1answer
96 views
Object scope and aggressive cleanup on paused Activity instances
I have an Activity that contains an AsyncTask as an inner class (as I have seen in most examples). If I fire the AsyncTask and then pause the Activity by navigating away from it, the AsyncTask ...
0
votes
2answers
604 views
Android aSyncTask and starting another activity
I've got this inner class as part of an application which doesn't accept changes in orientation (it makes more sense in landscape orientation).
private class initialDBQuery extends ...
1
vote
1answer
768 views
How do you call web service in android such that it will continue waiting for response even when activity is on background?
What approach do I have to take if I need to connect to a web service and make sure it will continue downloading even after the screen has been rotated or a phone call suddenly pops up or the activity ...
0
votes
1answer
307 views
Finish() Activity from other one without starting it with StartActivityForResult()?
I have an AsyncTask in separate file (as it uses it about half of my activities) and in that AsyncTask I'm having a constructor with context in it so I can show progress dialog etc. Only problem I ...
0
votes
1answer
88 views
Launch an activity from a different class
I am trying to launch an activity in the onPostExecute method of an AsyncTask. This async class is implemented in another class which dosent extends an activity. But I am passing application context ...

