Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6058869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:38:50+00:00 2026-05-23T08:38:50+00:00

I have a JScrollPane with a JPanel that implements Scrollable as its viewport view.

  • 0

I have a JScrollPane with a JPanel that implements Scrollable as its viewport view. When I set ScrollableTracksViewportHeight and ScrollableTracksViewportWidth to false, my panel stays at its preferred size. Good. The problem is that I can’t figure out who owns the space around the scrollable panel. I feel like I’ve tried changing the background of every component and dialog, and nothing seems to do it. How can I change the ugly grey to a fun color like neon yellow?

Here’s a screenshot of what I’m talking about:

Here’s what I want:

enter image description here

And here’s the code to duplicate the first image:

package components;

import java.awt.*;
import javax.swing.*;

@SuppressWarnings("serial")
public class DialogWithScrollPane extends JFrame {

  ScrollablePanel scrollablePanel;

  public DialogWithScrollPane() {
    super();

    setResizable(true);

    Container pane = getContentPane();

    scrollablePanel = new ScrollablePanel();

    final JScrollPane scrollPane = new JScrollPane();
    scrollPane.setPreferredSize(new Dimension(300,300));
    scrollPane.setViewportView(scrollablePanel);
    scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    pane.add(scrollPane);

    setMinimumSize(new Dimension(300, 300));        
    setVisible(true);
  }

  class ScrollablePanel extends JPanel implements Scrollable {

    public ScrollablePanel() {
      super();

      setBackground(Color.red);
      setPreferredSize(new Dimension(200, 100));
    }

    public Dimension getPreferredScrollableViewportSize() {
      return getPreferredSize();
    }

    public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
      return 0;
    }

    public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
      return 0;
    }

    public boolean getScrollableTracksViewportHeight() {
      return false;
    }

    public boolean getScrollableTracksViewportWidth() {
      return false;
    }

  }

  public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        new DialogWithScrollPane();
      }
    });
  }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:38:51+00:00Added an answer on May 23, 2026 at 8:38 am
    scrollPane.getViewport().setBackground(Color.yellow);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JScrollpane that has a JPanel on the inside (and the panel
I have a JPanel inside the JScrollPane and it does that whenever I try
I have a JScrollPane with a JPanel in it's viewport, a number of smaller
I have a JPanel that contains a JScrollPane that contains a JTable. Inside my
I have a JScrollPane , which has a JPanel for its content pane. To
I have a JPanel that holds a JScrollPane that holds a JPanel as such:
I have a JTable that is within a JScrollPane. Rows are added to the
I have embedded a JTextArea on a JScrollPane and am using that JTextArea for
I have a JScrollPane that holds a JLabel using the following code: //Create TEXT
I have a JPanel with several levels of child components, also with a JScrollPane.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.