- 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 arrange components in a FlowLayout to be left-justified in Java?
Use FlowLayout.LEFT to arrange components in a FlowLayout to be left-justified. The following is an example to arrange components in a FlowLayout to be left-justified −
Example
package my; import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Font; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import javax.swing.WindowConstants; public class SwingDemo { public static void main(String[] args) { JFrame frame = new JFrame("Internet Language"); frame.setLayout(new FlowLayout(FlowLayout.LEFT)); JLabel label = new JLabel("Top Internet Language"); label.setPreferredSize(new Dimension(240, 70)); label.setOpaque(true); label.setBackground(Color.RED); label.setForeground(Color.WHITE); Font font = new Font("Serif", Font.BOLD, 14); label.setFont(font); label.setHorizontalAlignment(JLabel.CENTER); JTextArea text = new JTextArea(); text.setText("English"); font = new Font("Serif", Font.BOLD, 13); text.setFont(font); frame.add(label); frame.add(text); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.setSize(600, 300); frame.setVisible(true); } }
output
- Related Articles
- How to arrange components in a Flow to be right-justified in Java?
- Java program to lay out components in a flow to be centered with FlowLayout?
- Set the content of the JLabel to be left-justified and top-aligned in Java
- How to set FlowLayout for JFrame in Java?
- How to create a Box to display components from left to right in Java
- Java program to set the content of the JLabel to be left-justified and bottom-aligned
- How to combine FlowLayout and BoxLayout in Java?\n
- How to ceate right justified JTextField in Java?
- How to left align components vertically using BoxLayout with Java?
- How to set the text of the JLabel to be right-justified and vertically centered in Java?
- How to set the content of the label to be right-justified and top-aligned in Java?
- Program to combine BorderLayout, GridLayout and FlowLayout in Java Swing?
- How to create JSplitPane to divide components in Java?
- How to add components with a Relative X Position in Java
- Java Program to set the content of the JLabel to be right-justified and bottom-aligned

Advertisements