The tag has no wiki summary.

learn more… | top users | synonyms (1)

1
vote
1answer
29 views

WPF DataGrid - how to suspend UI updates from databind and do a bulk update later

Having to do a lot of cell-by-cell changes in code on my source DataTable, I need a way to temporarily halt it sending data-binding updates to its bound DataGrid: I have a DataGrid bound to a ...
0
votes
0answers
11 views

LocationManager: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

Normally an error while doing something on the UI thread from another thread I thought, but I don't get what I'm doing wrong: I want the most recent location to be stored, so nothing on the UI. I ...
0
votes
1answer
17 views

How to access soundPool from a thread other than main/UI?

I have my main Activity class, a Renderer class and my custom soundPool class (called soundMan) and I can create and access SoundPool(I.E. soundMan) objects within my Activity class without too many ...
0
votes
2answers
63 views

Android Not Responding throws in Service

I'm developing an app that should track user location from time to time (e.g. every 20 seconds) and at each minute send those locations to a web services. To achieve that, I've created a producer ...
-2
votes
0answers
35 views

Role of the User Interface Thread - Android [closed]

I am studying for an exam in OOP and one of the questions is based on the UI thread in Android. It says: "Explain the role of the user interface(UI) thread. In Android programming, explain why ...
0
votes
1answer
47 views

How to make some Tasks change my WPF controls

I want to create a WPF application that does this: The application will have 8 Tasks running together. Each task will be able to ad some strings to a text box shown in the main window. how do I get ...
1
vote
1answer
56 views

MonoTouch, how to tell if I am on UI thread

The title says it all. I have a generic function that is used to run actions on the UI thread. I want to simple invoke the action if I am already on the UI thread. Is there a way to do this with ...
0
votes
3answers
76 views

Updating swt ui from another thread every second

I am working on a SWT java project for MAC OS, i need to add a label on SWT UI where i have to show the current time, updating on every second. I tried it i.e. final Label lblNewLabel_1 = new ...
0
votes
1answer
46 views

UI access from ReactiveAsyncCommand

I want to register an async command that opens a file and processes it. OpenFileCommand = new ReactiveAsyncCommand(); OpenFileCommand.RegisterAsyncAction(_ => { var path = GetOpenFilePath(); ...
1
vote
5answers
84 views

Showing a text indicator before freezing the Silverlight UI thread

At some point in my Silverlight application I need to perform a heavy operation which freezes the UI thread for about 4 seconds. Before actually performing the operation I am trying to display a ...
0
votes
1answer
75 views

Android: Toggle button doesnt update

I'm having some problems trying to set togglebutton (LeftLightButton) state and text after receiving value 1 at novo.charAt(0) for example. The main idea is, i click the button, it makes ...
2
votes
3answers
204 views

Why isn't my progress dialog showing up?

In the code below, I have two fragments that get shown when their respective tabs are selected. Both of these fragments run asynctasks and are supposed to show progress dialogs while they do that. The ...
0
votes
1answer
55 views

CustomAdapter java.lang.NullPointerException on PostEcecute

I have a an application which retrieves data from a database and displays it with a CustomListView. When the app is going to show the ListView it crashes with this log: 03-28 13:22:16.963: ...
0
votes
2answers
72 views

How to print on UI and then make UI Thread wait for sometime in the same Click event in Windows phone app

I have a case where, I need to print something in textbox1 then wait for a second, make an image visible and then again wait for a second then print something in textbox2 in one button click. When I ...
0
votes
1answer
94 views

Invalidating and ImageView outside of the MainActivity thread

My MainActivity's contentView/View can be refresh by simply using invalidate() anywhere after calling: setContentView(R.layout.activity_main); But if I were to call a Dialog in my item select: ...
1
vote
1answer
69 views

App crashes when updating UI after Shared Preferences were changed

In my Activity's onCreate method I register an onSharedPreferenceChangeListener. The activity itself implements the OnSharedPreferenceChangeListener. When the preferences are updated, the following ...
0
votes
1answer
40 views

Which one is the original thread that created the view?

I have this code in a class named GameLoop (code similar to the LunarLander sample) while( running ) { Canvas canvas = null; try { canvas = mSurfaceHolder.lockCanvas(null); ...
0
votes
1answer
52 views

what does it mean when an exception properly handled by the UI thread causes the Windows Form application to quietly exit?

My understanding is that in a windows forms application if the UI thread throws an exception and it is not handled by user code the application will crash in a manner that is obvious to the user. (A ...
0
votes
1answer
121 views

Run SurfaceView off UI Thread

My surfraceview is where the majority of my application is and I would like to reduce its lag, thus I have been told to take it off the UI Thread. Is it possible to run a SurfaceView in an AsyncTask? ...
0
votes
1answer
122 views

Android media recorder freezes (locks-up) UI thread

I am developing a GPS app in which User can tap anywhere onscreen to record an audio snippet that then gets attached to a track as it logs. I'm using media recorder to do this right inside my app, as ...
0
votes
1answer
68 views

Android UI thread time issue

I have a question regarding the UI Thread in Android: My activity extends AsyncTask to do some calculations on wave file. If I run the application once, it takes around 15 min to finish. This is not ...
2
votes
1answer
100 views

How to implement a more flexible AsyncTask?

while it is very convenient to use, from my understanding, AsyncTask has two important limitations: doInBackground of any instances will share the same worker thread, i.e. one long running ...
0
votes
3answers
44 views

Timed event to change UI?

I've looked around, but I'm not quite sure how this would work, and the only thread that was really close to what I'm looking for had 404'd information. On an activity, I have four images laid out. I ...
1
vote
1answer
95 views

Android UI Thread Block when calling AsynchTask.get()

My activity is a login page. When the user clicks, an asyncTask check in a database if credentials are good. During the task, I want to display a ProgressDialog but after clicking on the button, it ...
0
votes
0answers
20 views

Network connection and UI views change in same method

I'm having problem with an AsyncTask in my app. I load some dat in doInBackground(), and with that data (contains a link to download an image) I fill a ListView. My idea was to fill the ListView in ...
0
votes
3answers
79 views

How do I clean up in Dispose if I can't call UIKit from another thread?

Most of my UIKit Dispose overrides do something with other views before they get destroyed: protected override void Dispose (bool disposing) { if (ScrollView != null) { ...
2
votes
2answers
246 views

Android Service and UI Thread

I have a Service running in my app.. This Service has an object for sending message to the server and a function to get that object and use it. The object is initialized from the Service and yet ...
2
votes
3answers
91 views

Why android UI thread not so easy to block? [closed]

folks, As all know, the main thread of an app, aka UI thread, responsible for a ton of things, here are some that I can see: UI layout and drawing Keyboard events as well as screen touch events ...
0
votes
3answers
226 views

Android Network Operation on another Thread than UI

I am playing an stream from Internet and because long processes such as network operation should not be handled on UI Thread, I'm using AsyncTask. In Main Thread I set some specification of videoView: ...
1
vote
2answers
71 views

WPF using and accessing an ObjectContext from the BackgroundWorker thread

I have a code like the following (I have stripped some code for readability) private void RicercaArticoloStripped(object sender, DoWorkEventArgs e) { try { using ...
1
vote
2answers
97 views

ProgressBar and whole application freezes

I have an application and it freezes when I show a ProgressBar on the screen. When I increase the size of a ProgressBar or when I use a View instead of ProgressBar it doesn't freeze. When it freezes ...
0
votes
0answers
87 views

Animating a View while ListView is scrolling not working

I'm trying to achieve the effect that the Google+ Android app has where there is a View that sits at the bottom of the screen, and when the user scrolls the ListView that sits behind it UP the View ...
0
votes
1answer
82 views

What's the appropriate GCD pattern for long-running tasks in viewWillAppear?

I have some long running tasks (IE retrieving complex data from a DB) that I need to run any time my view appears. I know for performance reasons I want to take my long running tasks off the main ...
0
votes
0answers
127 views

How to modify UI thread from non UI thread using Qt?

I'm working with Qt and I wanna use my backgroud thread(Receive vedio stream with socket) to modify the UI(UI only can be changed by the ui thread), which means the receive thread can repaint UI in ...
1
vote
6answers
252 views

WPF/C# Don't block the UI

I've an existing WPF application, which has several sections. Every section is a UserControl, that implements an interface. The interface specify two methods: void LoadData([...]) and bool ...
0
votes
1answer
63 views

How to display a string in a dialogs edit box from a UI Thread Classes Run() function

I have a Dialog-based Application. By default Visual Studio created an App and a Dlg class. I have added buttons, edit boxes, etc. to my dialog. When the user clicks the START button on my dialog it ...
2
votes
4answers
520 views

android - calling ui thread from worker thread

Hi I want to make Toast available to me no-matter-what and available from any thread whenever I like within my application. So to do this I extended the Activity class: import android.app.Activity; ...
1
vote
2answers
66 views

Android views can not be touched by other threads?

I am a newbie in Android and creating a mini FTP download manager for myself.. I am using multithreading, each thread to handle one download or upload. In the MainActivity.java, I am using two ...
5
votes
2answers
236 views

Android Unit Testing with AsyncTask and UI Updates Solution

Scenario: I'm trying to unit test the onClick handler of my application. Onclick does a simple search against a REST API, returns the results and updates the UI. Details: Onclick executes an ...
1
vote
1answer
63 views

Two UI updates at same time

Hi am trying to build an UI like Plus news , First try : i tried to use ListView as a vertical view and every News feed is a horizontal ListView but the problem was "row reusing" , the list view ...
1
vote
1answer
490 views

how to stop execution of UI thread until async task is complete to return value got in AsyncTask in android

I have a class in which I have written a AsyncTask to get Json from net. public class MyAsyncGetJsonFromUrl extends AsyncTask<Void, Void, JSONObject> { Context context_; String url_; ...
3
votes
2answers
441 views

Worker thread from AsyncTask blocks UI thread

I'm making an android application which downloads JSON file in the AsyncTask class after SEARCH BUTTON in Activity is clicked. And I want to display Progress Dialog on the Activity while downloading ...
0
votes
1answer
189 views

Android : Can we insert data into sqlite while running UI Thread?

I've found the same my question but no answer. That's why I wanna ask again here : Here is the class on my main thread : private class DownloadTask extends AsyncTask<String, Void, String> ...
0
votes
1answer
252 views

XML SAX parsing not working in android 4.0 but in 2.x

I am using XML sax parsing for getting data through web-services. It working fine in 2.2 and 2.3 but not in higher versions like 4.x(ICS). Here my code is... btnlogin.setOnClickListener(new ...
1
vote
0answers
198 views

WPF application using Geckofx-15 inside WindowsFormsHost

I have wpf application which uses geckofx inside WindowsFormshost to display websites sometimes GeckoWebBrowser becomes not reponsive specially when loading heavy pages I know how to run Window in ...
5
votes
1answer
787 views

No error “Only the original thread that created a view hierarchy can touch its views” when the view is updated without delay

I was faced with an interesting problem. If you write the following code in the onCreate/onStart/onResume method of activity: final Button myButton = (Button)findViewById(R.id.myButton); final ...
1
vote
1answer
70 views

Will ios app get killed if UIThread is blocked for long time?

I have a strange issue. My app gets killed if my UI thread is blocked for long time ( say 10s). I want to repeatedly take screenshots after updating view in a loop. This is a time consuming process. ...
1
vote
2answers
110 views

Displaying a popup from a different thread (windows phone)

I am having troubles displaying my pop-up from inside a different thread. I have tried reading some of the other questions on here, but I can't see to understand how I can apply them... I have an app ...
1
vote
1answer
182 views

Android UIThread Dispatch Queue

I have a small question regarding how the UI Thread works. For instance, when the user touches a button on the screen, your app's UI thread dispatches the touch event to the widget, which in turn ...
0
votes
3answers
85 views

Android NonUI Thread making application “not respond”

I am editing the code of an android app that is making GPS calls in a service. LocationListener. It also uses ServiceConnection In some views the device decides that my application is taking too ...

1 2 3 4