Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
909 views

Redraw a single row in a listview

Is it possible to redraw a single row in a listview? I have a listview with rows that are linearlayouts. I listen to a preference change and sometimes I need to change just one view inside the linear ...
6
votes
3answers
167 views

How can I manually tell an owner-drawn WPF Control to refresh?

We are doing custom drawing in a control subclass's OnRender. This drawing code is based on an external trigger and data. As such, whenever the trigger fires, we need to re-render the control based ...
6
votes
8answers
2k views

What could cause redraw issues on 64-bit vista but not in 32-bit in .NET WInForms?

This happens when compiling for Any Cpu as well as compiling to x86. Sections of the GUI doesn't redraw unless it's resized, for instance if the main form is maximized some of the controls don't ...
5
votes
3answers
2k views

How to update Android ListView with dynamic data in real time?

I have a background thread loading data which I want to display in an Android ListView. The data changes very often (i.e. 1-2 times per second). Sometimes the number of rows in the dataset changes ...
4
votes
2answers
281 views

WPF Application windows does not fully refresh after screen awakes from sleep

Today we found a little strange problem in one of our WPF application and we are not exactly sure how to deal with it. When we run the software on one of our laptops the screen goes to sleep (turns ...
4
votes
4answers
479 views

Prevent controls from being redrawn in C#?

I have a form that contains a lot of runtime generated controls (image, button, panel,...), about 100 controls (I'm making a card matching game so there is a lot of controls in the form). I place the ...
4
votes
5answers
12k views

Forcing Flex to update the screen?

This may be a bit of a beginners question, but I can't for the life of me figure it out. I'm using flex to develop a GUI for a large project, specifically a status bar along the bottom. Within my ...
4
votes
5answers
4k views

Can I suspend redrawing of a form until I have performed all updates?

Using C# and .Net 2.0, I'm using an irregularly shaped form (TransparencyKey, FormBorderStyle = None, etc...) and want to allow "normal" bordered mode. I change the back colour to default from Lime ...
3
votes
2answers
75 views

Whack vim screen drawing errors

Something extremely weird is happening when I open files in vim, and I can't remember doing anything that would have caused it. Weird behaviors include: no text being visible until I highlight it ...
3
votes
5answers
318 views

Why does ie7 move DOM elements on mouseover?

So I have a table with only two columns and one row. The second td holds an image, and the first holds text. I would like the td containing the image to be at the minimum size possible with that image ...
3
votes
1answer
478 views

Items not drawing on Resize of Viewbox, Silverlight

I am currently designing a layout app in Silverlight and have a Canvas inside of a Viewbox. I add shapes to the canvas and they display properly, when I resize the viewbox to zoom in at 2x the height ...
3
votes
1answer
150 views

Is it possible to prevent a WPF control redraw?

I have to update multiple child controls in a WPF control. I don't want the control redrawn until I have updated all its child controls.
3
votes
1answer
599 views

Listview's ArrayAdapter notifydatasetchanged() very slow redraw

I've a quite simple list with 3 textview fields on each row. We are updating their values every 2 seconds or so with data coming from a background webservice call ( AsyncTask ) We compare the coming ...
3
votes
2answers
2k views

jCarousel not getting drawn inside a hidden div

I am using a div to populate a ul/li list and then draw a jCarousel out of it. So this works fine: $('#mycarousel').jcarousel(); Here is the problem: The div containing the ul/li items could be ...
3
votes
3answers
4k views

Difference between InvalidateRect and RedrawWindow

When I want to redraw a window, is there any preferred function to call between InvalidateRect and RedrawWindow? For instance, are these two calls equal: (win would be a HWND) RedrawWindow(win, ...
3
votes
1answer
509 views

How to draw a picture instead of the slider on Qt QSlider?

I have created a class that inherits from QSlider. I want to draw a picture on the slider (grabber) instead of showing the plain one. How to do it? -- I found an answer and posted after I had ...
2
votes
3answers
78 views

How to force a view to redraw immediately before the next line of code is executed

I have a LinearLayout that I would like to change the background color of when one of its child views (an ImageButton) is clicked. I am able to do this, but not immediately - the change doesn't occur ...
2
votes
1answer
59 views

'image stretch' proxy for slow Swing component?

I have an application that displays plots using JFreeChart. As it happens, these plots are big and JFreeChart is not terribly fast, resulting in atrocious redraw times, particularly when resizing the ...
2
votes
0answers
339 views

UIView force redraw in real-time (drawing app)

I'm working an app for drawing. I'm collecting the strokes as points and draw those points into the drawRect method of my UIView subclass. I collect the point by overriding touchesBegan, touchesMoved ...
2
votes
2answers
155 views

Rotating video messes up MediaControls, android

When I rotate my device, the video controls dont resize properly. I made a video of what I am talking about here: http://www.youtube.com/watch?v=FgRythmUo3A Is there a way to "redraw" the controls? ...
2
votes
1answer
145 views

Why does NSTextField not redraw the background of focused fields?

I'm running into a weird problem. I have two NSTExtFields representing a username and a password. When I get an incorrect username/password combination, I set an instance variable stating so in the ...
2
votes
1answer
281 views

Problem with TransparencyKey in Windows Forms C#

I'm trying to have in .NET 2.0 a transparent form, that is on top, invisible for mouse clicks but is possible to draw on it. I can easily reach this by setting the TransparencyKey to background color ...
2
votes
4answers
344 views

Fix display garbage left by WPF dialog window?

In my WPF app, I have WPF windows that can open other WPF dialog windows, which I do as follows: PickForEveryone PickForEveryoneWindow = new PickForEveryone(sSelRecipe, selMRM.sDay, ...
2
votes
2answers
395 views

How to keep Java Frame from waiting?

I am writing a genetic algorithm that approximates an image with a polygon. While going through the different generations, I'd like to output the progress to a JFrame. However, it seems like the ...
2
votes
1answer
2k views

Trying to force redraw of UITableViewCell

I found this post on Beveled UITableViewCells from http://news.selectstartstudios.com/beveled-uitableviewcells/. I'm using the technique to reduce the width of the cells, and for the most part it ...
2
votes
1answer
946 views

Redraw balloon tip and tooltip in C#?

I wrote a C# application that is a simple countdown timer. I use it myself to keep track of cooking time (not to forget about boiling pasta) and other purposes. It works in the tray. When hovering ...
2
votes
3answers
709 views

How to redraw the picture while moving windows in openGL?

I have drawn a picture with openGL on my windows. Now whenever I hold the mouse button on the windows and move it, my picture always got distorted. I don't know what function in openGL that can help ...
2
votes
1answer
860 views

Better event-based redraw() of Processing.js when using noLoop()

I am using Processing.js, with jQuery 1.3.2 at my disposal, and targeting Firefox 3.5, Safari 4 and IE 8 (through ExplorerCanvas). The Processing.js website says "Using Explorer Canvas with ...
2
votes
1answer
369 views

Mac Dev - How to refresh view for 2d game?

If you see my other question, you'll know that I'm starting to try making simple 2d games on mac. There I was deciding which library to use (OpenGL or Quartz), but no matter what I'll have to use ...
1
vote
2answers
61 views

Android, how to redraw list when the user sets checkbox?

I have a list view and each row contains two textviews and a checkbox. I need user sets just one of checkboxes and if user sets other checkbox, previous checkbox should be cleared and second checkbox ...
1
vote
0answers
145 views

Layer-backed OpenGLView redraws only if window is resized

I have a window with a main view of type NSView and a subview which is a subclass of NSOpenGLView whose name is CustomOpenGLView. The subclass of NSOpenGLView is obtained through a Custom View in ...
1
vote
0answers
51 views

android appwidget invalidate

I have a home screen widget that tries to mimic a list of items, basically it's just 4 views in a vertical linear layout and there's 2 arrow buttons to "scroll" through list. I'm able to scroll just ...
1
vote
1answer
121 views

how to force redraw contents inside a NSScrollView

I put NSTextView + NSImageView + NSMatrix + NSTextView in a NSScrollView. And I scroll this scrollview to top using following code - NSPoint pointToScrollTo = NSMakePoint(0, ...
1
vote
1answer
149 views

iPhone - how do I refresh/redraw a button that has changed state?

I am currently using NSNotifications to send a message from my app delegate to a UIView in my iPhone application. The notification gets received by the UIView and I then use a selector to change the ...
1
vote
0answers
191 views

Android is redrawing all Views when applying animation on one view

I have an Application that contains one layout with sevral views, when i animate one view all views are getting redrawn! is that the normal behavior or i am doing something false ? i would like to ...
1
vote
2answers
627 views

Force HTML5 canvas to redraw while doing heavy JavaScript processing?

This question is related to this older one, but I wanted to be sure I had the right answer before I started making major changes to my code. I'm working on a very computation-intensive JavaScript ...
1
vote
2answers
176 views

Vim often needs Redraw after Splitting

after months of tweaking my vimrc file and installing plugins, I have this little bug which is very painful: When I'm closing a split (looks like this only appears on vertical ones) the remaining ...
1
vote
2answers
969 views

JFreeChart XY-chart that refreshes with new set of data? Example?

I want to learn how to learn how to create some charts with jfreechart and googlefor some examples. but I couldn't find what I need. This here is good ...
1
vote
2answers
409 views

Preventing Canvas Clear when Resizing Window

I'm trying to create a simple app that draws rectangles within the Canvas tag. I've got the Canvas resizing to fullscreen, but whenever I resize the viewport, Canvas clears. I'm trying to prevent it ...
1
vote
1answer
361 views

Force component to redraw it's focus

I'm having one more "How do I" question :) Suppose I have a component and want to change it's focus color at runtime. Here's an example for you (I've excluded any buttons and such to prevent component ...
1
vote
1answer
163 views

JQuery: How to Redraw Slider?

I need your help desperately since I spent too much time trying to modify Jquery Slider Plugin with no success. I am using this slider plugin: ...
1
vote
1answer
267 views

Pagination with UiScrollview and rendering the next page

I have implemented the UIScrollView with pagination, according to the PhotoScroller example. However, I cannot get it to work nicely. I use an viewController which loads an XIB. But when scrolling ...
1
vote
0answers
199 views

Firefox white flash upon certain javascript events

This is similar to this question: (firefox-making-white-flash-as-it-builds-the-page) But the difference is that in my situation, that page is already fully loaded. Well after the page has fully ...
1
vote
1answer
250 views

Speeding up WPF resizing/redrawing

Im noticing a black area displays when resizing even an empty WPF window. Alot of programs on my desktop dont have these issues.. So im wondering, is there a way to set a resize redraw priority or ...
1
vote
1answer
259 views

How to redraw a view? (OpenGl)

I want to create a kind of a simulation. It should display the certain position of a fish/shark/orca (not real ones, they are set up randomly). My Simulation can display the starting situation: ...
1
vote
1answer
283 views

Why expose event of my GTK+ widget will be freezed after a long time? Is it a GTK+ bug?

Here is my code: #include <gtk/gtk.h> static int counter = 0; static PangoLayout* layout; static GdkGC* gc1; static GdkGC* gc2; //**/static GMutex* mu; static gboolean ...
1
vote
1answer
390 views

iPhone: Force UIButton to redraw itself

I have a little problem and I would be gratefull if someone could help me. I got 5 UIButtons placed next to each other and what I wanna do is set image on first button, redraw it so it, wait for 1 ...
1
vote
2answers
407 views

SWT TabFolder: Weird Drawing Behaviour

Description I have an SWT Page with a TabFolder with a number of dynamically created TabItems. On each TabItem i crate a Composite and set the TabItem.setControl() to the Composite. I then use this ...
1
vote
4answers
2k views

repaint problem with JPanel inside a JPanel

I'm drawing shapes inside this JPanel, which is also inside another main JPanel. At repaint() it only draws the shapes for one millisecond and then they disappear. They don't stay painted, why? my ...
1
vote
1answer
786 views

Redrawing control behind composite with SWT.NO_BACKGROUND

Original goal: I have a TreeMenu that i use to display my Menu. In this tree, a user can select different items. I would like to disable the tree, so that a user cannot select a new item after ...

1 2 3