我很难弄清楚什么是卡片布局。我阅读了很多文章并实现了这个小例子,看看卡片布局是如何工作的。但我无法理解一些方法(被评论)。有人可以帮助我(我使用命令行)。
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class C_layout implements ActionListener
{
JButton b2;
JButton b1;
JFrame f1;
JPanel card1;
JPanel card2;
JPanel Jp;
void Example()
{
f1=new JFrame("CardLayout Exercise");
f1.setLocationRelativeTo(null);
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f1.setSize(500,500);
f1.setVisible(true);
Container cont=f1.getContentPane();
cont.setLayout(null);
Jp=new JPanel(new CardLayout()); //<-- How to implement card layout here (MAIN PANEL)
f1.add(Jp);
Jp.setLayout //<-- Not sure what means here ERROR
card1=new JPanel(); // First panel
Jp.add(card1);
card2=new JPanel(); // Second panel
Jp.add(card2);
JLabel lb1=new JLabel("This is the first Panel");
lb1.setBounds(250,100,100,30);
card1.add(lb1);
b1=new JButton("NEXT >>");
b1.setBounds(350,400,100,30);
b1.addActionListener(this);
card1.add(b1);
JLabel lb2=new JLabel("This is the second Panel");
lb2.setBounds(250,100,100,30);
card2.add(lb2);
b2=new JButton("<< PREV");
b2.setBounds(250,300,100,30);
b2.addActionListener(this);
card2.add(b2);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==b1)
{
CardLayout cardLayout = (CardLayout) Jp.getLayout();
cardLayout.show(card2,"2");
}
if(e.getSource()==b2)
{
// I still haven't implemented this action listener
}
}
}
class LayoutDemo1
{
public static void main(String[] args)
{
C_layout c=new C_layout();
c.Example();
}
}
答案 0 :(得分:3)
cont.setLayout(null);
是坏事,坏主意,快速失败......
您需要引用CardLayout
才能进行管理。首先定义CardLayout
...
private CardLayout cardLayout;
现在,创建CardLayout
的实例并将其应用到您的面板......
cardLayout = new CardLayout();
Jp=new JPanel(cardLayout);
此...
Jp.setLayout //<-- Not sure what means here ERROR
没有做任何事情,就Java而言,它不是一个有效的声明,事实上,它实际上是一个方法,应该引用你想要使用的LayoutManager
,但是因为你'已经完成了当你创建Jp
的实例时,你不需要它......
您需要某种方式来识别要显示的组件,CardLayout
通过String
名称执行此操作,例如......
card1=new JPanel(); // First panel
Jp.add(card1, "card1");
card2=new JPanel(); // Second panel
Jp.add(card2, "card2");
现在,在您的ActionListener
中,您想要CardLayout
向show
询问所需的观点......
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==b1)
{
cardLayout.show(Jp1,"card2");
} else if(e.getSource()==b2)
{
cardLayout.show(Jp1,"card1");
}
}
注意,为了CardLayout#show
能够正常工作,您需要为其分配CardLayout
的容器的引用以及要显示的视图的名称。
有关详细信息,请参阅How to Use CardLayout