Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
122 views

What is the relationship between the JavaScript thread and the Silverlight UI thread?

JavaScript is single threaded - Silverlight is not, but interaction between JavaScript and Silverlight must be performed on the Silverlight UI thread. However, what exactly is the relationship ...
6
votes
2answers
101 views

c#: need to prioritize asynchronous socket reads

My application pre-fetches a large number of video frames using asynchronous HttpWebRequest requests. So, if there are 100 frames, the prefetcher will request all 100 frames asynchronously, all at ...
6
votes
4answers
2k views

Run code on UI thread without control object present

I currently trying to write a component where some parts of it should run on the UI thread (explanation would be to long). So the easiest way would be to pass a control to it, and use ...
5
votes
5answers
4k views

Interacting with UI threads in Java/J2ME

I'm writing a J2ME application. One of the pieces is something that polls the contents of a directory periodically, and, if there are any new things, paints them on the screen. I've done this by ...
4
votes
2answers
476 views

Difference between Handler.post(Runnable r) and Activity.runOnUiThread(Runnable r)

Hy all! I want to know if there a difference between new Handler.post(Runnable r); and activity.runOnUiThread(Runnable r) Thanks!
4
votes
3answers
2k views

What is the Android UiThread (UI thread)

Can someone explain to me what exactly the UI thread is? On developer.android.com it says about the runOnUiThread function public final void runOnUiThread (Runnable action) Since: API Level 1 ...
4
votes
2answers
329 views

How can I find out whether method executes on UI thread or not in a decoupled way?

Here is the problem I have: I need to make sure an object is instantiated on the UI thread. If it is not, it should throw an exception. But how do I check inside a method whether it is running on the ...
3
votes
1answer
65 views

Is SQL appropriate in the Android main UI thread?

I'm trying to follow Android best practices, so in debug mode I turn all the following on: StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectAll().penaltyLog().build()); //detect ...
3
votes
3answers
205 views

doInBackground calling AsyncTask then sleeps blocks UI Thread

I have an activity, composed of an AsyncTask aiming to launch a request when the user clicks on the button. I have been looking for answers, but I didn't find the same problem, or it didn't the same ...
3
votes
3answers
70 views

Can non-UI threads display to the screen?

Is only the UI-thread able to display to the screen, or can other threads do this as well?
2
votes
5answers
54 views

Where is the main thread in android app?

I have written a game (I'll give it the name "Gamer") in which I have the following general structure (the code has been much simplified): public class Gamer extends Activity implements ...
2
votes
5answers
99 views

BackgroundWorker returns to wrong thread

In my application, I create a new UI-Thread with the fallowing code: Thread thread = new Thread(() => { MyWindow windowInAnotherThread = new MyWindow(); ...
2
votes
2answers
125 views

Why can only the UI thread in Android update the UI?

Could someone please explain to me why only the UI thread in Android can update the UI? Why can't any other thread update the UI?
2
votes
3answers
171 views

Processing Windows Messages in blocked UI Thread?

This is possibly related to ProgressBar updates in blocked UI thread but is a little different. While troubleshooting a crashing WinForms control (a DevExpress treelist) a member of our team ...
2
votes
4answers
212 views

Handling UI from other thread

I have a class which extends the Runnable. This class performs some heavy operation (basically downloads the image from network) in different thread. I want to update the UI (display the downloaded ...
2
votes
1answer
319 views

Setting TextView visible from another thread or BeginInvoke in Android

I'm developing an Android 2.2 application. I have an event listener on an activity, and I want to set visible a TextView when I receive an event. But there is an error: I only can set it visible ...
2
votes
2answers
1k views

c# progressbar not updating

I have a ProgressBarWindow which has a progressbar and a cancel button on it which I use to report progress on file I/O. However, the UI Thread of the ProgressBarWindow and my main window both hang ...
2
votes
3answers
569 views

Guice creates Swing components outside of UI thread problem?

I'm working on Java Swing application with Google Guice as an IOC container. Things are working pretty well. There are some UI problems. When a standard L&F is replaced with Pushing pixels ...
2
votes
4answers
2k views

How to detect if we're on a UI thread?

For the sake of argument, consider a UI thread as a thread that has had a call to Application.Run() or one of it's overloads called on it and has an active message loop running. Is there a way of ...
1
vote
2answers
27 views

Android: Updating gridview multiple times after x seconds

I am having a problem updating the view in android every x seconds. To get to know how android works I am writing a small game. It has a GameController which holds the game loop. Inside the loop, ...
1
vote
1answer
54 views

How to make timer task to wait till runOnUiThread completed

I need to update UI after certain time period, for which I have create a timer schedule and inside it I am calling the runOnUiThread. timer.scheduleAtFixedRate(new TimerTask() { public ...
1
vote
1answer
96 views

InvokeOnMainThread() not necessarily invoking on main thread - bug or feature?

I'm using a Timer and let it perform regular checks. If the test condition is true, I start a thread and let it do what it has to do. If within that thread I want to change the UI I'm using ...
1
vote
2answers
147 views

Multithreading: C# program running C dll - Unresponsive C#

I wrote a C dll that performs two tasks: 1) Relay certain messages to the C# program 2) Perform an intensive task on a different thread It all works but the C# UI is unresponsive, even though C is ...
1
vote
2answers
126 views

UI refresh freezes app while paints

This is a speculative question so no code provided. I have an application that takes a large XML file and builds a view from this for editing by the user. The loading of the XML is carried out in a ...
1
vote
3answers
90 views

odata on silverlight runs on UI thread only

We're working with OData on Silverlight, using DataServiceCollection to get the data. All calls for fetching data (LoadAsync() LoadNextPartialSetAsync()) are done on a worker thread. However, the ...
1
vote
1answer
73 views

Force close when changing the resource of an ImageView

I having some problem with changing the resource of an imageview when i click an item. I know that any graphical updates should be done in the UI thread and I have tried two ways without success: ...
1
vote
2answers
174 views

How to flash a button on UI thread?

I have a button on my UI that I would like to flash (turn on and then off again) every 800ms, once the button has been pressed. I do that with the following code: - (void)flickEmergencyButton { // ...
1
vote
1answer
403 views

admob: How to load AdRequest outside of UI Thread?

I have a game which has ads in it.I eventually found the source of lag is basically because of the adRequest process which takes a long time. super.onCreate(savedInstanceState){ mainLayout = new ...
1
vote
3answers
181 views

When using a progress bar in Windows Forms, does the “lengthy process” have to run on a non-UI thread?

When you use a progress bar, does it run in the UI thread? I ask because I wonder how you would display a progress bar for a lengthy task that is running on the UI thread. I have some windows that ...
1
vote
1answer
2k views

The method runOnUiThread(Runnable) in the type Activity is not applicable for the arguments (void)

I am trying to create a dialog from a non-UI thread, in onUtteranceCompleted(): runOnUiThread( new Thread(new Runnable() { public void run() { MyDialog.Prompt(this); } }).start()); ...
1
vote
2answers
351 views

Silverlight UI Thread Freezing

I have a grid control that is trying to display large amounts of data and so it takes a long time to render on the UI thread. I have added a loading bar that animates and displays depending on if the ...
1
vote
1answer
611 views

Android: TabActivity - add no Tabs before AsyncTask has finished

I've got an TabActivity implementing TabContentFactory, which starts an AsyncTask in onCreate() to fetch the data for the tabs. When the AsyncTask has finished, onPostExecute() could directly update ...
1
vote
3answers
424 views

Android MapActivity thread question

How do I ensure code is or is not executed on the UI thread in an Android MapActivity project? I am developing an Android map-based application, but I have experienced some stability issues and my ...
1
vote
2answers
230 views

.NET Update WPF Control on own dedicated UI thread

I have a real-time application which constantly updates a UI log (RichTextBox control) in the form of a ListView control. The control is updated with current application data received via events. My ...
1
vote
0answers
260 views

None of my AsyncTasks are executing on PostExecute

The only AsyncTask that I have that is working properly is one that handles a progressdialog for a search. None of my other AsyncTasks are getting to onPostExecute() even though the doInBackground() ...
1
vote
1answer
384 views

AsyncTask not displaying onPreExecute

I have two AsyncTask Activities, whose sole responsibilties are to execute an AsyncTask on the UI Thread. One of them works great, displays the progressBar, and updates the ProgressBar message. This ...
1
vote
2answers
472 views

Notify BackgroundWorker of Progress Change from another class

I want to use a BackgroundWorker or a Thread to call a method from my windows form on a class located in my business layer. I would like the method in this business layer to be able to report its ...
0
votes
1answer
43 views

Viewgroup not Drawing its Children

I have an activity that gets a bitmap from the sdcard. Its view is set to a custom viewgroup. i have dynamically added a view containing the bitmap to the viewgroup and used a handler to update the ...
0
votes
1answer
35 views

ListView onItemClick not always reacting, Busy UIThread

I have a ListView with 4 photos on each row, and a photo download manager handling the download of all those photos. I've limited the number of threads downloading my photos because I had way too much ...
0
votes
1answer
54 views

Getting list of all windows in current thread

I am starting a new UI-Thread in my WPF-application. Now I am searching a way to get a list with all windows in this thread - like I will get it for the main-thread with ...
0
votes
2answers
76 views

how to indicate to main UI thread when background task has completed? (performSelectorInBackground)

How can I get an indication to main UI thread in an iPhone app IOS program, when background task has completed? Background I'm trying to setup a loading indicator per the concept at How to add a ...
0
votes
2answers
95 views

Android : How to show custom dialog from thread

I stack with this, I'm trying to create application using TabLayout. I have 3 tabs (3 different activities). I also got service which reads my gps position - that works fine. I got thread which post ...
0
votes
2answers
95 views

How do I show a ProgressDialog on the UI Thread

I have really been struggling figuring out how to get a ProgressDialog on the UI Thread for this code given that uploadPhoto and would appreciate any guidance: @Override /** Handle Upload a Photo ...
0
votes
4answers
133 views

Android - How do I set View.GONE outside the UI thread?

I want to make a view disappear (to be gone) when the user pushes a button. I can make it inside the onCreate() method (main UI thread) by doing: ...
0
votes
1answer
87 views

Android switch views after TimerTask condition

I want to build a few conditions to kick a user out of an activity after X amount of time. I get the general idea: store the current time in milliseconds , from a calendar object in milliseconds ...
0
votes
3answers
76 views

I am trying to make a simple thread that changes a textview after a time

The problem is that when i click the button for the second my application crashes and i don't understand why. When i clink the button for the second time is suppose to the same all over again. Any ...
0
votes
2answers
178 views

Running on UI Thread from a view

I have a custom view that contains several views in itself. I've made it so that when one of the views inside this container view is clicked, it will run a "timer" thread that needs to update the a ...
0
votes
1answer
160 views

How to prevent UI thread locking in silverlight

Within a view I have a button that makes a call to a method within my view model search.xaml <TextBox x:Name="txtSearchField" Grid.Column="0" Style="{StaticResource ...
0
votes
1answer
314 views

Avoiding the window (WPF) to freeze while using TPL

I am building a WPF which has a button that execute a sql query in sql server (the query could take a long time to run). I want to use TPL for doing that. This code: var result = ...
0
votes
2answers
523 views

Memory leaks when starting Activity in AsyncTask (changed from Thread) Android

I'm quite new to Android development and was about to finish my first application when I noticed that I have a huge memory leak. The leak occurs when I start a new activity from within a thread: ...

1 2