How to arrange components in a Flow to be right-justified in Java?


Use FlowLayout.RIGHT to arrange components in a FlowLayout to be right-justified. −

JFrame frame = new JFrame("Language");
frame.setLayout(new FlowLayout(FlowLayout.RIGHT));

The following is an example to arrange components in a flow to be right-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("Language");
      frame.setLayout(new FlowLayout(FlowLayout.RIGHT));
      JLabel label = new JLabel("Most Spoken Language ");
      label.setPreferredSize(new Dimension(220, 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("India");
      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

Updated on: 30-Jul-2019

81 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements