当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java AWT CardLayout用法及代码示例


CardLayout 类以一次只有一个组件可见的方式管理组件。它将每个组件视为容器中的一张卡片。一次只能看到一张卡片,容器充当一堆卡片。第一个组件添加到CardLayoutobject 是容器第一次显示时可见的组件。

构造函数:

  1. CardLayout():它用于创建间隙大小为零的新卡片布局。
  2. CardLayout(int水平间隙,int垂直间隙):它用于创建具有指定水平和垂直间隙的新CardLayout 类。

常用方法:

  • getLayoutAlignmentX(容器父级):返回沿 x 轴的对齐方式。
  • getLayoutAlignmentY(容器父级):返回沿 y 轴的对齐方式。
  • getVgap():用于获取组件之间的垂直间隙。
  • addLayoutComponent(组件cm,对象cn):用于将指定的组件添加到该卡布局的内部名称表中。
  • getHgap():用于获取组件之间的水平间隙。
  • toString():返回此卡片布局状态的字符串表示形式。
  • 移除LayoutComponent(组件cm):用于从布局中删除指定的组件。

以下示例程序旨在说明 CardLayout 类:

  • 程序1:在下面的程序中我们安排了几个J标签组件在一个J框架,其实例类是“卡片布局”。我们创造了3个J按钮名为“的组件BT1“,”BT2“,”BT3”,然后将它们添加到J框架通过使用add()方法。我们通过方法设置框架的大小和可见性setSize()setVisible()。布局通过方法设置setLayout()方法。

Java


// Java program to illustrate the CardLayout Class
import java.awt.*;
import java.awt.event.*;
import javax.swing.JFrame;
import javax.swing.*;
// class extends JFrame and implements actionlistener
public class Cardlayout extends JFrame implements ActionListener {
    // Declaration of objects of CardLayout class.
    CardLayout card;
    // Declaration of objects of JButton class.
    JButton b1, b2, b3;
    // Declaration of objects
    // of Container class.
    Container c;
    Cardlayout()
    {
        // to get the content
        c = getContentPane();
        // Initialization of object "card"
        // of CardLayout class with 40 
        // horizontal space and 30 vertical space .
        card = new CardLayout(40, 30);
        // set the layout
        c.setLayout(card);
        // Initialization of object "b1" of JButton class.
        b1 = new JButton("GEEKS");
        // Initialization of object "b2" of JButton class.
        b2 = new JButton("FOR");
        // Initialization of object "b3" of JButton class.
        b3 = new JButton("GEEKS");
        // this Keyword refers to current object.
        // Adding Jbutton "b1" on JFrame using ActionListener.
        b1.addActionListener(this);
        // Adding Jbutton "b2" on JFrame using ActionListener.
        b2.addActionListener(this);
        // Adding Jbutton "b3" on JFrame using ActionListener.
        b3.addActionListener(this);
        // Adding the JButton "b1"
        c.add("a", b1);
        // Adding the JButton "b2"
        c.add("b", b2);
        // Adding the JButton "b1"
        c.add("c", b3);
    }
     
    public void actionPerformed(ActionEvent e)
    {
         
        // call the next card
        card.next(c);
    }
    // Main Method
    public static void main(String[] args)
    {
         
        // Creating Object of CardLayout class.
        Cardlayout cl = new Cardlayout();
        // Function to set size of JFrame.
        cl.setSize(400, 400);
        // Function to set visibility of JFrame.
        cl.setVisible(true);
        // Function to set default operation of JFrame.
        cl.setDefaultCloseOperation(EXIT_ON_CLOSE);
    }
}

输出:

  • 程序2:在下面的程序中我们安排了 4J标签组件在一个J框架,谁的类“CardlayoutDemo”。我们创造 4J按钮名为“的组件第一个按钮“,”下一个按钮“,”上一个按钮“,”最后按钮”和 4J标签名为“的组件jl1“,”jl2“,”jl3” “jl4”。这里我们还创建了4个J面板组件命名为“杰普1“,”杰普2“,”杰普3“,”杰普4”,然后将它们添加到J框架通过使用add()方法。我们将使用以下命令设置框架的大小、可见性和标题setSize(),setVisible()setTitle()方法分别。布局是通过使用设置的setLayout()方法。

Java


// Java program to show Example of CardLayout.
// in java. Importing different Package.
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
// class extends JFrame
public class CardLayoutDemo extends JFrame {
    // Initialization the value of
    // current card is 1 .
    private int currentCard = 1;
    // Declaration of objects 
    // of CardLayout class.
    private CardLayout cl;
    public CardLayoutDemo()
    {
        // Function to set visibility of JFrame
        setTitle("Card Layout Example");
        // Function to set visibility of JFrame
        setSize(300, 150);
        // Creating Object of "Jpanel" class
        JPanel cardPanel = new JPanel();
        // Initialization of object "c1"
        // of CardLayout class.
        cl = new CardLayout();
        // set the layout
        cardPanel.setLayout(cl);
        // Initialization of object 
        // "jp1" of JPanel class.
        JPanel jp1 = new JPanel();
        // Initialization of object 
        // "jp2" of CardLayout class.
        JPanel jp2 = new JPanel();
        // Initialization of object 
        // "jp3" of CardLayout class.
        JPanel jp3 = new JPanel();
        // Initialization of object
        // "jp4" of CardLayout class.
        JPanel jp4 = new JPanel();
        // Initialization of object
        // "jl1" of JLabel class.
        JLabel jl1 = new JLabel("Card1");
        // Initialization of object 
        // "jl2" of JLabel class.
        JLabel jl2 = new JLabel("Card2");
        // Initialization of object 
        // "jl3" of JLabel class.
        JLabel jl3 = new JLabel("Card3");
        // Initialization of object 
        // "jl4" of JLabel class.
        JLabel jl4 = new JLabel("Card4");
        // Adding JPanel "jp1" on JFrame.
        jp1.add(jl1);
        // Adding JPanel "jp2" on JFrame.
        jp2.add(jl2);
        // Adding JPanel "jp3" on JFrame.
        jp3.add(jl3);
        // Adding JPanel "jp4" on JFrame.
        jp4.add(jl4);
        // Adding the cardPanel on "jp1"
        cardPanel.add(jp1, "1");
        // Adding the cardPanel on "jp2"
        cardPanel.add(jp2, "2");
        // Adding the cardPanel on "jp3"
        cardPanel.add(jp3, "3");
        // Adding the cardPanel on "jp4"
        cardPanel.add(jp4, "4");
        // Creating Object of "JPanel" class
        JPanel buttonPanel = new JPanel();
        // Initialization of object 
        // "firstbtn" of JButton class.
        JButton firstBtn = new JButton("First");
        // Initialization of object
        // "nextbtn" of JButton class.
        JButton nextBtn = new JButton("Next");
        // Initialization of object
        // "previousbtn" of JButton class.
        JButton previousBtn = new JButton("Previous");
        // Initialization of object 
        // "lastbtn" of JButton class.
        JButton lastBtn = new JButton("Last");
        // Adding JButton "firstbtn" on JFrame.
        buttonPanel.add(firstBtn);
        // Adding JButton "nextbtn" on JFrame.
        buttonPanel.add(nextBtn);
        // Adding JButton "previousbtn" on JFrame.
        buttonPanel.add(previousBtn);
        // Adding JButton "lastbtn" on JFrame.
        buttonPanel.add(lastBtn);
        // add firstbtn in ActionListener
        firstBtn.addActionListener(new ActionListener() 
        {
            public void actionPerformed(ActionEvent arg0)
            {
                 
                // used first c1 CardLayout
                cl.first(cardPanel);
                // value of currentcard is 1
                currentCard = 1;
            }
        });
        // add lastbtn in ActionListener
        lastBtn.addActionListener(new ActionListener() 
        {
            public void actionPerformed(ActionEvent arg0)
            {
                // used last c1 CardLayout
                cl.last(cardPanel);
                // value of currentcard is 4
                currentCard = 4;
            }
        });
        // add nextbtn in ActionListener
        nextBtn.addActionListener(new ActionListener() 
        {
            public void actionPerformed(ActionEvent arg0)
            {
                // if condition apply
                if (currentCard < 4) 
                {
                     
                    // increment the value of currentcard by 1
                    currentCard += 1;
                    // show the value of currentcard
                    cl.show(cardPanel, "" + (currentCard));
                }
            }
        });
        // add previousbtn in ActionListener
        previousBtn.addActionListener(new ActionListener() 
        {
            public void actionPerformed(ActionEvent arg0)
            {
                // if condition apply
                if (currentCard > 1) {
                    // decrement the value 
                    // of currentcard by 1
                    currentCard -= 1;
                    // show the value of currentcard
                    cl.show(cardPanel, "" + (currentCard));
                }
            }
        });
        // used to get content pane
        getContentPane().add(cardPanel, BorderLayout.NORTH);
        // used to get content pane
        getContentPane().add(buttonPanel, BorderLayout.SOUTH);
    }
    // Main Method
    public static void main(String[] args)
    {
        // Creating Object of CardLayoutDemo class.
        CardLayoutDemo cl = new CardLayoutDemo();
        // Function to set default operation of JFrame.
        cl.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        // Function to set visibility of JFrame.
        cl.setVisible(true);
    }
}

输出:

注意:上述程序可能无法在在线 IDE 中运行。请使用离线编译器。

参考: https://docs.oracle.com/javase/7/docs/api/java/awt/CardLayout.html 



相关用法


注:本文由纯净天空筛选整理自佚名大神的英文原创作品 Java AWT | CardLayout Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。