I have a JPanel with a JScrollPane sorounding it, the problem is that when i use the JScrollPane the JPanels redraw methode get called. I want to disable that because my JPanel redraw by its self at the right time.
I want it so it just updateds the getClipBounds() for the paint methode but withoud calling the paint methode.
You can't do that - since the viewport displays different parts of the contained JPanel, depending on the position of the scrollbar, the areas that have to be repainted might in fact be newly revealed and might not have been painted before.
Since
JScrollPane
doesn't know how the containedComponent
is implemented and whether it repaints its entire area or only the area that needs repainting, it forces the containedComponent
to redraw itself upon scrolling.However, you can instead render the content you want to show to a bitmap, and then paint the bitmap in the
paintComponent(Graphics)
method. Thus, you effectively buffer your painted content and can initiate an update to the buffered bitmap whenever it suits you.In order to paint onto a bitmap, you can do this:
Then, in your JPanel, you override the paintComponent method: