Tagged Questions
The responsiveness tag has no wiki summary.
27
votes
12answers
31k views
Best Java IDE for Visual Studio fan?
As a C# programmer I want to increase the java knowledge and the only barrier is getting grip with the java IDEs like Eclipse. What can I do or use to get Visual-Studio-like experience from these ...
4
votes
5answers
348 views
How Can I Minimize Overhead when Processing Messages in a Long Loop
I've got some long but simple loops in my Delphi program that may loop millions of times and take some seconds to execute. The code inside of the loop is very fast and has been optimized. It just ...
4
votes
1answer
392 views
How do I ensure GUI responsiveness when using OpenCL on the display GPU?
In my relatively short time learning OpenCL I frequently see my application cause the operating system UI to become significantly less responsive (several seconds for a window to respond to a drag for ...
4
votes
6answers
1k views
Howto keep Delphi App Responsive during GUI Updates?
This question is about keeping the GUI responsive during longer-running tasks (a few seconds in most cases).
I extensively use threads and a task pattern to execute expensive task in a background ...
4
votes
11answers
203 views
Does users really prefer quicker apps or does features trump all?
How much of an impact does a faster application count considering the competition, or does features trump everything? Where is the balance point, and for what type of apps?
2
votes
4answers
78 views
Triggering jQuery ONLY for handhelds
I'm using jQuery Backstrech plugin to implement full size background images to a responsive website.
I want the jquery code to run ONLY for handheld devices, or only for viewports smaller than 480 ...
2
votes
1answer
77 views
Media Query-like behaviour on width of a specific div
I'm building an editor where the content of a post is loaded in a div, and jQuery selectors allow me to edit the content inline.
I just ran into a bit of a hurdle as I was trying to add some ...
2
votes
2answers
142 views
Can a java application ever be as responsive as a native alternative [closed]
To my experience, most of java applications on desktop platforms are less responsive than a similar application written in c++ or some other natively compiled language. Which is understandable ...
2
votes
2answers
98 views
Measuring UI responsiveness of a Windows app
Is there any metric for responsiveness of a Winforms/Windows application. Something like the percentage of time the message loop is blocked for. How can it be obtained?
2
votes
4answers
3k views
C# WinForm Application - UI Hangs during Long-Running Operation
I have a windows forms application
on which I need to use a for loop having a large number of Remote Calls around 2000 - 3000 calls,
and while executing the for loop, I loose my control on form and ...
1
vote
2answers
99 views
Android: Increase responsiveness of phone screen?
Is there a way to increase responsiveness of a device for a particular application? Specifically, right now my touch events are definitely triggering, but they are delayed by a fraction of a second. ...
1
vote
1answer
268 views
Relative width and padding on same element - responsive web design
In an effort to make my web sites more responsive, I'm trying to learn how to define elements fluidly. Today I came across a situation that I finally fixed, but I don't understand why the fix worked, ...
1
vote
1answer
115 views
LSUIElement application be responsive
I have an application in which I set the LSUIElement key to 1, so that it runs in background and does not show the icon in Dock.
My will is to make the application responsive to keystrokes or mouse ...
1
vote
1answer
53 views
What do users consider an “instant” reaction?
How much time can elapse between users action and a reaction of the application to make the user feel like it was "instant" or "in an unnoticeable time span"? (Some say that 250ms, others say 100ms, ...
1
vote
3answers
163 views
Java: Enforce max allowed processing time when calling listeners
I notify some listeners in a loop.
for (Iterator it = listeners.iterator(); it.hasNext();) {
MyListener l = (MyListener) it.next();
l.notifyEvent(event);
}
I have no idea what the listener ...
1
vote
2answers
641 views
How to change Listener Thread Priority in Indy
I use the TIdCmdTCPServer component of Indy 10 to realize my client-server application. The problem is that the request from clients can be fairly complicated and that the GUI part of my server ...
0
votes
1answer
48 views
How to implement a fast responding android application
I'm doing an android application much like the gmail app for android. I can see the app is very fast and very responsive.
I'm sure gmail uses local caching for better performance. But I wonder how ...
0
votes
3answers
58 views
Responsive Wordpress theme images fix
I am building responsive theme for Wordpress and i ran into a trouble with responsive images. The thing is that i need to alter the size of the image that are inside the content. My logic does say ...
0
votes
0answers
263 views
HTML5/jQuery Cross-Browser Responsive Images
I'm trying to devise a method of displaying images that resize responsively in a cross-browser-compatible manner. Using CSS3 media queries won't do because they're not supported widely. jQuery, ...
0
votes
1answer
274 views
Why are my iPad touch events being delayed (sometimes up to a second)?
I'm working on a game, and I'm using a CAEAGLLayer backed UIView subclass to present the game engine. Touch handling is done using -touchesBegan:withEvent: et. al.
Everything works fine, except that ...
0
votes
0answers
90 views
Android - AdMob responsiveness
Now, I'm a new developer and whatnot, but I am having trouble with the responsiveness of AdMob.
I have yet to release my app due to this but I was wondering if this behavior is normal and/or best ...
0
votes
2answers
290 views
Android Sensor Dump Responsiveness
I have an application in Android that dumps the sensor values to the SDcard memory of the phone and kills itself when I press a button on the screen. I am using Sensor_delay_fastest to get maximum ...
0
votes
1answer
253 views
ScrollView that does not render views that aren't visible
I am attempting to improve the amount time it takes to fill the items into the ScrollView. If I hard code the height (not in pixels of course) of every RelativeLayout in the LinearLayout in the other ...