1
vote
1answer
28 views

SYSTEM_UI_FLAG_LOW_PROFILE cannot be resolved or is not a field for google threadsample

I have import the threadsample code from https://developer.android.com/training/multiple-threads/index.html, but I got errors after I import it. They are : SYSTEM_UI_FLAG_LOW_PROFILE cannot be ...
0
votes
2answers
69 views

How can i get (keys,values) from an array contentvalue in android

I speak a little english, sorry if its hard to read. This is my problem. I did a class extending Asyntask to set values to a database. But the paremeter i set in generic types was ContentValues. ...
0
votes
0answers
31 views

How to update UI using thread in IPC mechanism of android

In one of my application project I have to get a data from JNI using AIDL interface. The AIDL interface is like below interface IBiometricService { int intFromJNI(); } For above ...
0
votes
0answers
30 views

How to reuse ThreadPoolExecutor between Activities

When you initialize a ThreadPoolExecutor in an activity, how do you pass this resource on to other activities for reuse?
0
votes
0answers
84 views

How to requestLocationUpdates() periodically in a thread?

I used a service to collect the location information. like static int count = 1; @Override public void onStart(Intent intent, int startId) { /* updating location when sevice is starting */ ...
0
votes
0answers
88 views

Android: safely handling RejectedExecutionException on bulk uploads to S3

My Android app is for data collection in an industrial context - fulltime employees use the app to take many observations (photos, geotag, text, etc) which are then uploaded in bulk when wifi is ...
0
votes
2answers
54 views

Android OS blocks my network packages

My App sends out GPS data with a timer. Sometimes I block the screen. Now with some phones and only sometimes I have the problem that the OS somehow blocks the data packages and only releases them ...
3
votes
2answers
81 views

Fully controlled queue of threads in Android

I have a problem with controlling queue of threads. My application uses MySQL database to read parts of data, processing it and showing results on screen. There is about 20 tasks in queue, but only ...
0
votes
0answers
163 views

Thread pools in Android to download xml files and images in Android

I making an app that download xml files from some movies from imdb. My method is submitted to a ThreadPool, more precisely a Executors.newFixedThreadPool() with size of 5. I have another ThreadPool in ...
1
vote
0answers
81 views

Thread priority android

In my app I'm looking for a design where I've 2 threads: Primary thread with high priority, downloads data that is urgent Background thread with very low priority, keeps on downloading data in ...
0
votes
1answer
99 views

User tracking and data sending in a background service in Android

Details The app has a background service running when the app is started. In this service, on onStartCommand() starts listening for GPS location with a parameter for passed meters between reads. ...
2
votes
1answer
102 views

Running a ProgressDialog MonoAndroid

I am trying to run a progressDialog that will loading items into a Sqlite datebase on a first load for my application. I get an error message because the application runs the rest of the code in the ...
3
votes
2answers
735 views

Android - Async Task behavior in 2.3.3 and 4.0 OS

I am testing an application where we have a list view with list of images retrieved over network. When i run the application on android device 2.3.3 (WIFI speed 512 KBPS) and check the DDMS (Thread ...
0
votes
1answer
377 views

AsyncTask in the ThreadPool

How could I run the AsyncTask in the thread pool? method executeOnExecutor(exec, params) I cannot use, because it requires API level 11.
1
vote
3answers
247 views

an AsyncTask which is started from OnCreate of an activity, only if such an AsyncTask is not currently running. How might I implement this?

On opening a new screen (activity) I want my program to start a new Async Task which will be running every X interval forever. I do not want to create one, if another is already running. I have ...
2
votes
0answers
191 views

Thread Status Monitor. How do I debug this? What's causing it?

I'm developing on Android and I can't figure out why some of my threads are going into a "monitor" status. I've read it could be because of a "synchronized" issue but I'm not sure how an object ...
1
vote
0answers
117 views

Stop asyntask threads in android

I am extending the AsynTask to update the images on screen. The images were updated from input stream through sockets continuously. When I press the back button I have come out from the asyn task ...
0
votes
1answer
28 views

Verifying downloaded images

I am downloading images from a server with the help of a Thread Pool. If an image fails to download, say because the local network connection is lost, or the server goes off-line, what methods can I ...
0
votes
0answers
28 views

how to post a thread on a running service thread queue?

on android: I have a service running background named Manager. And in the activity to get the service I use Manager instance = Manager.getInstance() Now is there way to post runnuble Thread on the ...
2
votes
1answer
418 views

AsyncTasks do not get collected causing other AsyncTasks to not run

My app uses a lot of AsyncTasks. It is a web app after all. And when I keep track of the Debug tab, I notice every AsyncTask says running behind it and after 5 AsyncTasks, I can't start any ...
1
vote
1answer
475 views

AsyncTask inside a loop

Basically I want start a few threads which execute serially one after the another. I'm using Thread.join() for it. But the application kinds of hangs out and goes in ANR state. I want to know that ...
0
votes
1answer
181 views

Android Debugging ScheduledThreadPoolExecutor using DDMS

For my Android application, I use ScheduledThreadPoolExecutor instead of Timer because it is not affected by time changes. With the Timer, you can create it by giving it a name. EX: Timer myTimer = ...
0
votes
2answers
407 views

executor service + view.post(Runnable)

I want to start several threads, retrive data from net, perform some actions with it and then change UI regarding this data. I'm using executor service executorService = ...
4
votes
1answer
498 views

Android AsyncTask not being called for minutes on ICS

I have an application that uses a lot of AsyncTasks, the problem I have is that a particularly important task is not being started for upto a couple of minutes after I call execute. If I use the ...
1
vote
3answers
780 views

What change did really happen in Async Task after Android Gingerbread?

What change did really Android team make in Async task after android 2.3. When I executed the following code I am getting same result in both Android 2.3 and 3.0. package com.sample.asynctask; ...
1
vote
1answer
604 views

Android Thread Pool to manage multiple bluetooth handeling threads?

So I have my Android Bluetooth application that has it's host and clients. The problem is, because I am making multiple connections, I need a thread to handle each connection. That's all ...
3
votes
1answer
245 views

Custom order of tasks within ThreadPool

I currently use FixedThreadPool to download images from the web, like this: ExecutorService mThreadPool = Executors.newFixedThreadPool(MAX_THREADS); And then I just submit new Runnables with image ...
0
votes
1answer
153 views

ThreadPoolExecutor for running AbortableHttpRequest - how to call abort?

I'm running a networking service in android where I direct all my http requests to run and get callbacks from the service when the requests are complete. I run the requests in a ThreadPoolExecutor to ...
0
votes
2answers
193 views

How to use two threads in one function?

here I have a function of checkupdate() in which my application check updates available for users, so i need to display two progressdialog one when server is under request(Checking process) and other ...
9
votes
1answer
4k views

Where do I create and use ScheduledThreadPoolExecutor, TimerTask, or Handler?

I need to make my RSS Feed reader check the feed every 10 minutes for new posts, and then parse them if there are new ones. I also need to update the UI about every minute. I have read and heard ...
7
votes
1answer
3k views

Android - Thread pool strategy and can Loader be used to implement it?

First the problem: I'm working on the application that uses multiple FragmentLists within a customized FragmentStatePagerAdapter. There could be, potentially substantial number of such fragments say ...
1
vote
3answers
726 views

Android: How to properly manage sequential threads within infinite loop

I have created IntentService with infinite loop inside the onHandleIntent then add static methods start,resume,pause,stop to directly call it within my Activities. The scenario is, inside the ...
1
vote
2answers
797 views

Multiple AudioTracks, Single Thread or Multiple?

In my application, I will be creating multiple Audio Tracks, some of which will need to play simultaneously. I'm going to use MODE_STREAM and write data in as the app runs. Sounds are going to be ...
13
votes
3answers
10k views

AsyncTask.executeOnExecutor() before API Level 11

The normal way we do AsyncTask in Android is, from Android API: private class DoIntenseTask extends AsyncTask<Object, Object, Void> { protected Void doInBackground(Object... params) { ...
1
vote
1answer
570 views

Alternative to Android AsyncTask

I have a UI widget where I need to map addresses to corresponding contact names and display them in a given format. I use AsyncTask to perform the query to lookup the address in doInbackground() and ...
4
votes
2answers
7k views

How to use AsyncTask with ThreadPoolExecutor

I am a little confused on ThreadPoolExecutor. Here is what I am trying to accomplish: I have a list-view which is populated with an image icon to the left and a short description to its right. I ...
0
votes
2answers
866 views

Android : How to use ThreadPoolExecutor to download list of tasks in sequence in Android?

In my application , i need to run set of tasks sequentially. Each task unzip file and update data to database . But am getting fallowing exception while updating data from different threads. ...
10
votes
3answers
3k views

HttpClient memory management

I have an application that has a thread pool (ThreadPoolExecutor) that is handed tasks that each perform a HttpGet operation and read the InputStream into a byte[] to do something with. After reading ...
2
votes
1answer
651 views

Android Thread Pool has runnables building up without execution after background state

My application has a thread pool that creates 3 simultaneous threads. As I invoke runnables, they are added to my thread pool. My problem happens when the application goes to the background for a ...