Tagged Questions
1
vote
1answer
26 views
Android : Create Service as Independent Project
I am working on an Android app that has two main projects:
The main activity
A service
These two projects are independent and I can't link them together.
I've tried Broadcast Receiver, Remote ...
0
votes
0answers
21 views
Draw a Path as animation on canvas
I have to ask again because no one answered my question before (my problem is NOT a duplicate of How to draw a path on an Android canvas with animation?). Please read it carefully and help me, if ...
0
votes
3answers
31 views
Do I need to use multiple AsyncTask subclasses?
My app has FTP functionality and now I want to implement a ProgressDialog for the various operations (Connect, download, upload, file list etc.)
I found this snippet here on stack and it seemed like ...
0
votes
1answer
15 views
Android - Using Connectivity Manager in a Fragment
Okay so i had the problem of network usage in UI Thread and now using AsyncTask. I am using Fragments and have a problem.
When putting this line:
ConnectivityManager connMgr = ...
0
votes
4answers
44 views
Android network usage on main thread
So, i have been creating and application for a client and got to the network part. I am currently removing the targetSDK tag from the manifest so i dont get a MainThreadException. I have seen people ...
0
votes
1answer
30 views
How do I use methods from an existing running thread in different Activities
I got the following problem. My App has 5 activities and works as TCP-Client. If I start the App, activity 1 gets started and establishes a connection with a server.
This activity owns a listener ...
1
vote
2answers
54 views
Load Images in GridView in a Synchronization - Android
I have a question, I have a GridView in which I am loading images using a ImageView, these images it´s stored in the SD, for this I am using the Runnable class for loading.
When it scrolling through ...
0
votes
1answer
30 views
Android recuring task best option?
Good morning everyone,
I am sending data to a device from android each 40ms. Up until now, I have been using a while(true) thread and thread.sleep because I didn't know better :). Now I see I have a ...
-5
votes
0answers
31 views
Main activity shuts down in my phone when i have a connection error [closed]
I have an app that i am writing, that is implements a timer every 30sec and after that it has thw main activity that is doing a job. the timer and the main are doing some connections with servers. ...
0
votes
2answers
34 views
Asynchronously add views to fragment in Android
I trying to create a fragment which at the beginning will show a ProgressBar, other thread will call a function which will bring some information (the information brought from remote server - takes ...
0
votes
3answers
47 views
Thread.Wait() exception, not knowing how to fix it
I have an frameAnimation, i only want it to start for like 3 second or so...therefore i added in a thread to wait for 3 second but then i meet an exception.
im havent done any work with thread before ...
0
votes
1answer
18 views
Run thread after app closes with Timer
I am making a test app which starts a Thread on a button click.
I am finding location through GPS within the thread.
But when I close the app, the thread gets destroyed.
I want to start a thread that ...
1
vote
2answers
50 views
How to kill a thread in android?
I've got a background thread running in my application and I need to kill it safely. How can I kill a thread in java other than using a boolean flag? I have read that i cannot use thread.stop() ...
0
votes
6answers
66 views
How can I stop two threads colliding when accessing java ArrayList?
I have two threads which both need to access an ArrayList<short[]> instance variable.
One thread is going to asynchronously add short[] items to the list via a callback when new data has ...
0
votes
0answers
24 views
How WakeLock works in general? For me it does not work
Can anyone describe or point me to a good description to "how wakelock in android works"? You can forget android standard documentation for it.
I have a service (started as forground) and in the ...
0
votes
1answer
43 views
How to handle variables shared between UI thread and another thread in android?
I am trying to develop an audio processing related app in android. I have one thread(not the UI thread) in which I am doing an operation. I need to update the result of the operation while it is still ...
2
votes
4answers
62 views
Changing image in imageview using Threads
I'm getting error with this code. Why huhu
123123123
Thread timer = new Thread()
{
public void run()
{
try
{
sleep(1500);
...
0
votes
0answers
52 views
Android Bluetooth connecting to Device socket.connect() wont connect
FIXED!!!
Didnt work because of the UUID
since api15 you can use a get function to get the uuid
UID uuid = bluetoothDevice.getUuids()[0].getUuid();
BluetoothSocket socket = ...
-4
votes
0answers
18 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.
1
vote
0answers
24 views
Starting a method in a thread, then changing the variables and starting a second thread of that method
im trying to use setLv1Sunflower() to start a new thread, which shows a plant grow where ever the player picks. after pressing the seed button, the player picks which placeHolder* that the plant will ...
-2
votes
1answer
40 views
Android send data via socket [closed]
I would like to send a simple date through tcp. I working with threads, but I dont know why but when i try to run my code that is stop imediatelly here is that. I have already set the permissons as ...
1
vote
1answer
28 views
Android : How to synchronized resource in right way
My application sometimes should read and write to file. And this work might happen in multithread, so I should synchronize those resource. Here is my code :
// write to file
FileOutputStream fos = ...
0
votes
0answers
17 views
load textures into a thread blocks the mainUI in android
I try to load bitmaps and display them into textures (openglES2.0).
I make a runnable thread, and once loaded the bitmap are sent to textures.
Even my thread is runnable, the main UI Thread freezes ...
0
votes
1answer
40 views
Wait for a thread before continue on Android
I've one thread, but i'd like to wait for it to finish before continue with the next actions. How could i do it?
new Thread(
new Runnable() {
...
1
vote
0answers
21 views
Racing condition in android instant search implementation
I am implementing instant search in an Android app which fetches the search results from REST services. I want to avoid the racing conditions when app fires multiple calls. Any idea on how to ...
0
votes
1answer
63 views
How to deal with slow Web services?
I have created a webserivce using C# on .NET and I'm consuming the same in an android application. At times while testing I notice that the web service is annoyingly slow and does not show results for ...
0
votes
1answer
21 views
how to stop a process when another is running java android
i am doing an app in android that connecting with servers and downloading some chunks.
now i want to have another one process doing other job. here is my code
class RemindTask extends TimerTask {
...
1
vote
1answer
20 views
What is the best option for a countinous background thread in Android?
I want to write an application that listens to things in the background and displays things on the UI based on what it hears. I was looking at the options available and AsyncTask is one of them. ...
0
votes
1answer
22 views
Android no Network in Main Thread and no View update in external thread [duplicate]
I have written application that combines widget, service syncronizing widget and activity for configuring widget.
I've started network transfer to server to fetch weather data and app crashed. After ...
0
votes
0answers
24 views
Inter-thread bidirectional communication in android
I want to create a thread that communicates both with a network server(bidirectional) and with the UI(bidirectional).
Using 2 instances of the Handler class(one in the UI and one in the new thread) ...
-4
votes
2answers
50 views
how to make a global variable with a lock that used by two threads [closed]
How to make a global variable with a lock that used by two threads? When the first thread the variable is locked and changed, after the 1st thread finished the second thread can take the variable!
0
votes
3answers
72 views
how to send data from thread to main activity java android
I have a thread that i want to make some calculations and after that send it to the main activity of my program. how i can do that?
the thread is
class RemindTask extends TimerTask {
public ...
0
votes
6answers
65 views
setBackgroundResource doesn't set the image
Handler hnd = new Handler() {
@Override
public void handleMessage(Message msg) {
int id = sequence.get(msg.arg1);
if(msg.arg1 % 2 == 0) {
...
0
votes
2answers
45 views
Android TextView.setText() invoked & returned before Thread.sleep() blocks until sleep() returns. Why?
In the Android framework, if a TextView's setText() method is called, and after it returns Thead.sleep() is called, then the screen of the device does not display the given text until after sleep() ...
0
votes
1answer
30 views
How to start and stop a process in a java program while waiting other method start and stops every 3 seconds
hello i have a method that i want to call every 3 seconds to doing some calculations and after that the result will going on to a new method and doing its work while the first method it stops
...
0
votes
3answers
43 views
lock a Runnable until finished
I'm using Runnable as a loop in Android. As this:
Timer timer = new Timer();
timer.schedule(new looper(m_mainView, this),0, Rate);
Which runs every 'Rate' milliseconds.
The looper is as ...
0
votes
0answers
23 views
Which kind of thread is better for an android client that connects to a server
In my application I want to keep a permanent full-duplex connection to a server.
When the application exits I don't need anymore the connection, but it should be maintained onPause(). In the ...
0
votes
0answers
20 views
Why am I getting null pointer in the getGraphObject when trying to post a image to facebook from android?
I am trying to post a photo from an url to the facebook. So, I have a method that converts the image located in the provided url to a bitmap, after that I want to publish the image to the facebook ...
2
votes
1answer
84 views
Android Thread.sleep() in AsyncTask freeze UI
i'm tried many suggestions but nothing works! When i call Thread.sleep() in background thread, main thread also freezes for this time (Animation frame drop) :(
Version 1:
public void ...
0
votes
1answer
26 views
Execute two Runnables Android
I'd like to make two Runnables work for my Android App:
1) Runnable r1 for changing an ImageView:
Runnable r1 = new Runnable() {
@Override
public void run() {
...
6
votes
2answers
59 views
does single thread application utilize multi core in android?
Does single thread application use all the 4 core in a Quad-core phone.
I searched this a lot and found some articles that says yes and some saying no. some articles even say the android OS doesn't ...
0
votes
0answers
20 views
Updating UI on Android Widget
I have widget with a button and a progress bar. Basically, when the button is pressed the progress bar starts to fill up. This has been relatively simple - but it seems to lag as the progress bar ...
-1
votes
0answers
32 views
parallel downloading in java android from two servers [duplicate]
I am working on an Android app which purpose is to download chunks(parts of a video file) from 2 servers, append them in order(into a main video file) after each one is downloaded and finally play ...
0
votes
1answer
72 views
Start two threads in the same time but avoid using join after, this is for android program
i have two threads starting at the same time in my android program for downloading some packets.
ServerIP = WifiServer;
Thread thread22 = new Thread (new CallDownloader(fileToReceive, ServerIP, ...
0
votes
5answers
76 views
Thread Runnable - stop and resume
Hello i'm new in Android(Java), and i have a problem with the use of thread
I define e new Thread timed (every 5 seconds) inside a class of my android Project.
The "mContinueThread" variable is used ...
0
votes
0answers
52 views
how to run multiple threads from the same method with differant values
i have some code that should make differant plants grow at differant times....
but atm when the next plant is placed it just carries on the method instead of creating a new instance of that method.... ...
1
vote
1answer
39 views
Threading and events
I'm really stuck here, I've read a lot on threading on android but I'm unable to find an answer that suits my proyect.
I've got a frontend (Manages GUI) and a backend (Manages the data and stuff). I ...
0
votes
1answer
19 views
Getting current geocodes and address when current location changes by a kind of background process in android
I am developing an android app which is working according to user current location. My requirement here is to get user current geo location as latitude,longitude with address, and some of my activity ...
0
votes
1answer
47 views
App code design Problems
So, I'm having two main code design problems in my app...
My app mainly consists in sending ssh commands to a remote host.
Right now I have a separated thread (singleton) wich gets messages through ...
0
votes
2answers
38 views
load and “unload” lots of pictures really often in android
I am working on an application on android which is loaded-images intensive ! according to the position of user, the system loads pictures from the disk (from 5 to 25 jpeg-1000x1000) to display them ...









