logo

BorderLayout (LayoutManager)

Gestori di layout Java

I LayoutManager vengono utilizzati per disporre i componenti in un modo particolare. IL Gestori di layout Java ci facilita il controllo del posizionamento e delle dimensioni dei componenti nei moduli della GUI. LayoutManager è un'interfaccia implementata da tutte le classi di gestori di layout. Ci sono le seguenti classi che rappresentano i gestori di layout:

  1. java.awt.BorderLayout
  2. java.awt.FlowLayout
  3. java.awt.GridLayout
  4. java.awt.CardLayout
  5. java.awt.GridBagLayout
  6. javax.swing.BoxLayout
  7. javax.swing.GroupLayout
  8. javax.swing.ScrollPaneLayout
  9. javax.swing.SpringLayout ecc.

Layout del bordo Java

Il BorderLayout viene utilizzato per disporre i componenti in cinque regioni: nord, sud, est, ovest e centro. Ciascuna regione (area) può contenere un solo componente. È il layout predefinito di una cornice o di una finestra. Il BorderLayout fornisce cinque costanti per ciascuna regione:

    pubblico statico finale int NORD pubblico statico finale int SUD pubblico statico finale int EST pubblico statico finale int WEST pubblico statico finale int CENTRO

Costruttori della classe BorderLayout:

    Layout del bordo():crea un layout con bordi ma senza spazi tra i componenti.BorderLayout(int hgap, int vgap):crea un layout del bordo con gli spazi orizzontali e verticali specificati tra i componenti.

Esempio di classe BorderLayout: utilizzo del costruttore BorderLayout()

Nome del file: Border.java

 import java.awt.*; import javax.swing.*; public class Border { JFrame f; Border() { f = new JFrame(); // creating buttons JButton b1 = new JButton('NORTH');; // the button will be labeled as NORTH JButton b2 = new JButton('SOUTH');; // the button will be labeled as SOUTH JButton b3 = new JButton('EAST');; // the button will be labeled as EAST JButton b4 = new JButton('WEST');; // the button will be labeled as WEST JButton b5 = new JButton('CENTER');; // the button will be labeled as CENTER f.add(b1, BorderLayout.NORTH); // b1 will be placed in the North Direction f.add(b2, BorderLayout.SOUTH); // b2 will be placed in the South Direction f.add(b3, BorderLayout.EAST); // b2 will be placed in the East Direction f.add(b4, BorderLayout.WEST); // b2 will be placed in the West Direction f.add(b5, BorderLayout.CENTER); // b2 will be placed in the Center f.setSize(300, 300); f.setVisible(true); } public static void main(String[] args) { new Border(); } } 

Produzione:

Classe BorderLayoutscarica questo esempio

Esempio di classe BorderLayout: utilizzo del costruttore BorderLayout(int hgap, int vgap).

L'esempio seguente inserisce spazi orizzontali e verticali tra i pulsanti utilizzando il costruttore parametrizzato BorderLayout(int hgap, int gap)

Nome del file: BorderLayoutExample.java

 // import statement import java.awt.*; import javax.swing.*; public class BorderLayoutExample { JFrame jframe; // constructor BorderLayoutExample() { // creating a Frame jframe = new JFrame(); // create buttons JButton btn1 = new JButton('NORTH'); JButton btn2 = new JButton('SOUTH'); JButton btn3 = new JButton('EAST'); JButton btn4 = new JButton('WEST'); JButton btn5 = new JButton('CENTER'); // creating an object of the BorderLayout class using // the parameterized constructor where the horizontal gap is 20 // and vertical gap is 15. The gap will be evident when buttons are placed // in the frame jframe.setLayout(new BorderLayout(20, 15)); jframe.add(btn1, BorderLayout.NORTH); jframe.add(btn2, BorderLayout.SOUTH); jframe.add(btn3, BorderLayout.EAST); jframe.add(btn4, BorderLayout.WEST); jframe.add(btn5, BorderLayout.CENTER); jframe.setSize(300,300); jframe.setVisible(true); } // main method public static void main(String argvs[]) { new BorderLayoutExample(); } } 

Produzione:

Classe BorderLayout

Java BorderLayout: senza specificare la regione

Il metodo add() della classe JFrame può funzionare anche quando non specifichiamo la regione. In tal caso, nel riquadro viene visualizzato solo l'ultimo componente aggiunto e tutti i componenti aggiunti in precedenza vengono scartati. L'ultimo componente copre l'intera area. L'esempio seguente mostra lo stesso.

Nome del file: BorderLayoutWithoutRegionExample.java

 // import statements import java.awt.*; import javax.swing.*; public class BorderLayoutWithoutRegionExample { JFrame jframe; // constructor BorderLayoutWithoutRegionExample() { jframe = new JFrame(); JButton btn1 = new JButton('NORTH'); JButton btn2 = new JButton('SOUTH'); JButton btn3 = new JButton('EAST'); JButton btn4 = new JButton('WEST'); JButton btn5 = new JButton('CENTER'); // horizontal gap is 7, and the vertical gap is 7 // Since region is not specified, the gaps are of no use jframe.setLayout(new BorderLayout(7, 7)); // each button covers the whole area // however, the btn5 is the latest button // that is added to the frame; therefore, btn5 // is shown jframe.add(btn1); jframe.add(btn2); jframe.add(btn3); jframe.add(btn4); jframe.add(btn5); jframe.setSize(300,300); jframe.setVisible(true); } // main method public static void main(String argvs[]) { new BorderLayoutWithoutRegionExample(); } } 

Produzione:

Classe BorderLayout