- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to enable Scrolling Tabs in a JTabbedPane Container
To enable scrolling tabs in a JTabbedPane container, use the setTabLayoutPolicy() method −
tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
Above, we have set the constant to be SCROLL_TAB_LAYOUT, since we want the scroller to be visible when all the tabs won’t fit within a single run.
The following is an example to enable scrolling tabs in a JTabbedPane container −
Example
package my; import javax.swing.*; import java.awt.*; public class SwingDemo { public static void main(String args[]) { JFrame frame = new JFrame("Devices"); JTabbedPane tabbedPane = new JTabbedPane(); JTextArea text = new JTextArea(100,100); JPanel panel1, panel2, panel3, panel4, panel5, panel6, panel7, panel8; panel1 = new JPanel(); panel2 = new JPanel(); panel2.add(text); panel3 = new JPanel(); panel4 = new JPanel(); panel5 = new JPanel(); panel6 = new JPanel(); panel7 = new JPanel(); panel8 = new JPanel(); tabbedPane.setBackground(Color.yellow); tabbedPane.setForeground(Color.black); tabbedPane.addTab("Laptop", panel1); tabbedPane.addTab("Desktop ", panel2); tabbedPane.addTab("Notebook", panel3); tabbedPane.addTab("Echo ", panel4); tabbedPane.addTab("Tablet", panel5); tabbedPane.addTab("Alexa ", panel6); tabbedPane.addTab("Notebook", panel7); tabbedPane.addTab("iPad", panel8); tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT); frame.add(tabbedPane); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(400,350); frame.setVisible(true); } }
Output
On scrolling and pressing the right navigation, the following is visible. Rest of the tabs are visible now −
- Related Articles
- How to set the location of the Tabs in a JTabbedPane Container to the left in Java?
- How to disable a Tab in a JTabbedPane Container with Java?
- How can we add new tabs to JTabbedPane from a JMenu in Java?
- How can we insert multiple tabs into a single JTabbedPane in Java?
- How can we change the default font of the JTabbedPane tabs in Java?
- Display all the titles of JTabbedPane tabs on Console in Java
- How to set the background color of a single tab in a JTabbedPane Container with Java?
- How to set TabLayout Policy to JTabbedPane in Java when all the tabs does not fit in a single run
- Insert a tab after the first tab of a JTabbedPane container
- Java program to set the color of a single tab’s text in a JTabbedPane Container
- How to customize how a JTabbedPane looks in Java?
- How to add a Tab in JTabbedPane with Java?
- How to handle tabs in Puppeteer?
- How to Create a Parallax Scrolling Effect in CSS
- How to disable GridView scrolling in Android?

Advertisements