Tagged Questions
0
votes
2answers
46 views
Unexpected error while switching activities in android
I'm making a splash screen in my android app, but if I attempt to start an activity in Run() I get that the error of application has stopped unexpectedly, if I use setContentView instead of ...
1
vote
3answers
54 views
Threads And Handlers
My question Is that What is the difference between Thread and Handler
Q1) What are their effects When they are used in 1) Activity 2) Service
Q2) What is difference between them in context with ...
0
votes
0answers
28 views
Accessing functions inside a thread withing a service from an activity (socket communication)
i'm trying to get the communication between activities and a service to work.
i am pretty new to android and java, learned it my self through youtube :D, but cant find or solve this one.
at first i ...
-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.
1
vote
2answers
75 views
Android: Is the UI-thread working similar to the Swing UI thread?
EDIT: I modified the question a bit. I did now actually implement my example. Before I transferred my actual code to a simpler example which actually did some thing different in the end.
I am ...
0
votes
1answer
41 views
Execute a thread of an activity based on item position clicked in ListView
Okay, here is the the problem I am having. I am developing a simple messaging client similar to the OEM one found on Android devices.
I currently have a ConversationList.java containing a ListView ...
0
votes
1answer
30 views
preparing android web view for next activity
I am a new android developer, I am trying to figure out how to initialize some activity, so that when I wish to show it later from any other activity (more than one), it will already be initialized. ...
0
votes
0answers
53 views
Android MediaPlayer in service
I have MediaPlayer running as a service in different thread, I can control the media player Play, Pause, Stop using messages when activity is run first time,
private void BGPause() { ...
0
votes
1answer
60 views
Android application optimal design with several activities
I'm developing a quite big app with several activities, see link, and I have 2 questions about the base design.
What is best practise concerning opening activities, so that that i don't waste memory ...
0
votes
0answers
200 views
Android - Activity / Thread / Surfaceview example needed [closed]
I have been struggling for weeks to try to create an Android app that does the following:
Has two activities
Each activity lets you navigate to the other one
Each activity has a SurfaceView, and ...
0
votes
0answers
76 views
C# Impossible to change an attribute value and modify the activity from a thread
I create an application to send sms with at command but I have problems. I have 3 gsm modem connected on COM7 & COM8.
My code work fine but I want if a sms send is on "error", the soft change ...
1
vote
3answers
64 views
How to know when my Activity is fully created?
I've an Activity that contains a lot of data and elements.
When it has too information, the activity wait in white for be shown, that is not I want, I actually want to show a activity while it's ...
0
votes
3answers
206 views
main activity implementing a listener interface for updating UI
So first of all I figured out how to update the UI from another thread. I'm using AsyncTask and the Handler class for anything else
But in the first place I did it wrong and now I really want to find ...
-1
votes
7answers
126 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 ...
0
votes
1answer
85 views
Sending message through Handler to an Activity not yet created
I'm developing an Android application. This app consists of two activity.
Main activity
Secondary activity (called from Main Activity)
I have a thread that using the handler mechanism passes a ...
0
votes
3answers
59 views
Recover a previous thread although the app was sent to background
I'm trying to programme an activity that holds a count-down timer. I create this through a new thread, and when the app is sent to the background this count-down timer continues his way in his thread; ...
0
votes
1answer
132 views
Refreshing UI activity (Screen) from background thread (Timer task)
I am new bee to android world and need urgent help.
I have application with background thread that pulls data from server and pushes outbox data to the server at regular interval.
If new message is ...
0
votes
1answer
41 views
Update UI multiple times during Activity method
In my main activity I have a method linked to a button, when the button is pressed it should be disabled, then a HTTP request is made and after the method finishes the button should be enabled again.
...
5
votes
2answers
177 views
Can someone please explain how startActivity(intent) and startActivityForResult(intent) are Asynchronous?
If an Asynchronous thread is a thread that operates separately to the main thread and doesn't interfere with the main thread..
Does a new Activity not occupy the main thread after it has been started ...
0
votes
2answers
127 views
Android call activity B's method from A's thread
I have a main Activity A, in which I create a background thread to load data from db. After the loading is done, I want to update the list which might have been already shown in a child activity B (If ...
0
votes
3answers
203 views
Android: how to resume main thread after download is finished
What can I do, if I'm in any Activity and I want download a file (using thread) and at same time I want the main thread waits until download is finished?
3
votes
2answers
35 views
Prioritising new Activity
I have activity A that needs to do things upon exit
-Save stuff to a database
-Start Activity B
As saving can take a while, i though i should start a new thread to have the database access running ...
0
votes
3answers
190 views
Dialog error after killing activity in Android application
I'm in Activity example.activity.SetupManage. After some operations I call a dialog that shows a notification message. But even if I don't click OK button, all the subsequent code is executed, so when ...
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 ...
1
vote
0answers
183 views
Pass String from thread to UI for display
I am new to android and java programming. I am try to write a program to read data via bluetooth.
I trying to pass a String apple which I decipher from my bluetooth input data from my thread to my UI ...
-2
votes
2answers
146 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 ...
1
vote
2answers
108 views
Android - What happens to Threads when a Activity finishes?
I have an Activity, which starts a Thread to do some work. What happens if the user presses the Back button, or the UI thread calls finish() to the thread?
Will the activity wait for the thread to ...
0
votes
1answer
32 views
How to obtain the handler for a secondary activity started by a first activity using an intent?
I have a main activity in my project from which i am starting a secondary activity using an intent. On a separate thread, I want to get the handler of the second activity for send some control ...
0
votes
2answers
462 views
Android ListView and multiple threads that updates the listview
I have an activity with one listview showing items. This activity has three buttons and a menu with multiple other buttons.
When i push one button, a new thread is launched, gets datas from a web ...
1
vote
1answer
1k views
Start an intent based on Handler handle message
I have an application which logs in into a webservice. I start a new thread when the login button is clicked and show a progress dialog while the device is communicating with the server. Based on the ...
0
votes
2answers
241 views
How to force thread to wait for gui loading on android
I start another heavy thread that play sound from android gui thread onCreate or onStart. After this gui not render, but music is playin about 20-30 seconds. Than gui rendered and everyting become ...
0
votes
2answers
366 views
Activity's background thread & configuration change
I have seen some discussion here on Stack Overflow related to using Activity.onRetainNonConfigurationInstance() to maintain a background thread started by one instance of an Activity and pass it to ...
0
votes
2answers
212 views
How to display view while doing a background process on android
I'm having a minor problem and I don't know how to do it.
I created a app, that pulls information through an xml web service.
The data get's parsed and inserted into a local sqlite database.
...
1
vote
1answer
236 views
ANDROID: Use running thread from parent activity in child activity
I'm adding Bluetooth functionality to my free Android game "forerunner" already on the market. I have the socket correctly set up in a thread embedded in the Main activity. I've created another java ...
3
votes
3answers
861 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 ...
0
votes
1answer
74 views
Android: stopping a thread when no activity running
i have this thread:
public void run() {
try {
while(isThereActivityRunning()) {
results = sendGetMessage();
b.putString("results", ...
0
votes
4answers
843 views
Other thread wont let me change Activity layout!? Android
SOLUTION:
It might not be the best or the prettiest solution, but it works. Start a new thread so the main thread can display a ProgressDialog while the new thread retrieves, assigns and interrupts ...
3
votes
2answers
545 views
Passing instances of classes between activitys
If I got class A and class B, class A act as a menu with 2 buttons one to connect one to login. When I press connect i run this method:
private void connect(){
Thread t1 = new Thread(){
...
0
votes
3answers
217 views
Creating a main game thread and getting game to run
I'm having some trouble with my simple game, specifically with understanding how the threading part works. I understand that there is the main game loop which takes care of updating and drawing ...
1
vote
1answer
352 views
Android - After closing an activity, when I run the app again, two activities run at the same time. How can I avoid it?
So I've got an activity in my android app, that runs on start.
This activity is just a page with a start button.
When I press the start button, it calls another activity and closes itself:
Intent i = ...
0
votes
3answers
157 views
Android - Running heavy computations in background and returning the result to an Activity
I have implemented some computationaly heavy functions into my application. Depending on the type of input it can take up to several minutes for a thread to return. During this time, I want the user ...
1
vote
3answers
493 views
Android - How to pause threads during another activity?
I have a thread "reader" that reads a file and updates a list A. Another thread "drawer" reads what there is in the variable a, do something, calls ondraw and then sleeps for 500ms (during this time ...
1
vote
1answer
547 views
Having trouble to startactivity inside a new thread
I am trying to start a background activity. so I have the following
new Thread() {
@Override
public void run() {
this.startActivity( new Intent(this, ...
1
vote
2answers
735 views
Android Thread interupt when activity destroy does not work
I'm new to android developing. I have an activity where I create a thread to load an image and refresh it on imageView. The thread runs an "infinite loop". I want to also stop the thread when the ...
1
vote
4answers
2k views
Starting new activity through Runnable
I check if a string is NULL in a Thread, if its null, the Handler starts
a Runnable which starts a new Activity.
Everything works fine, but, after the new activity is displayed it switches back to ...
0
votes
3answers
627 views
android wait activity for thread
How can I wait for thread processing in the activity. My thread downloads .png picture from remote server. I want to wait for downloading the picture, and then the activity will be continue in the ...
1
vote
2answers
389 views
Blocking Android activity exit until cleanup finishes
I have a worker thread run by my activity. When exiting the activity (e.g. onPause()), I'm sending a message to this thread and it should finish shortly (milliseconds) after, unless something goes ...
1
vote
2answers
528 views
Will thread be killed before the activity finishes in Android?
In Android, I have a thread that initializes a global variable. The thread starts when the activity starts. If the activity finishes before the thread initialized the global variable will the thread ...
0
votes
2answers
167 views
Does Threads in activity terminates when starting another?
I have an activity that starts 3 threads that make a
"While(true)" loop
when i start a new activity, does those threads terminate themselves?
And another question, how do i start a new activity but ...




