怎么用eclipse做一个界面点击按钮就可以跳转到另一个界面的代码
1、打开eclipse软件。
2、建立一个java工程。菜单栏中依次点击“file”-“new”-“java project”;然后,在工程列表中选中工程单击鼠标右键,选中“new”-“class”,在配置自己的类。
3、添加属性,载入属性代码。
private JPanel jp=new JPanel();
private JButton[] jbArray=new JButton[]{new JButton("前移动"),
new JButton("后移动"),new JButton("第一个"),
new JButton("最后个"),new JButton("第三个")}。
4、.建立卡片类,代码如下:
class MyCard extends JPanel{
int index;
public MyCard(int index){
this.index=index+1;
}
public void paint(Graphics g){
g.clearRect(0, 0, 250, 250);
g.drawString("这是Card"+index, 100, 100)。
5、运行程序点击编译并运行按钮。
6、安最后一个的按钮后,即可出现效果。
2017-12-30 · 知道合伙人数码行家
知道合伙人数码行家
向TA提问 私信TA
//************************************************************************************************************************
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Fre {
static JFrame frame = new JFrame();
public static void main(String[] args) {
//窗体大小
frame.setSize(200,200);
//按钮
JButton button =new JButton("点击我");
//在窗体上添加按钮
frame.add(button);
//显示窗体
frame.setVisible(true);
//添加点击事件监听器(你可以使用任何其他监听,看你想在什么情况下创建新的窗口了)
button.addActionListener(new ActionListener(){
//单击按钮执行的方法
public void actionPerformed(ActionEvent e) {
closeThis();
//创建新的窗口
JFrame frame = new JFrame("新窗口");
//设置在屏幕的位置
frame.setLocation(100,50);
// 窗体大小
frame.setSize(200,200);
// 显示窗体
frame.setVisible(true);
}
});
}
public static void closeThis(){
frame.dispose();
}
}
2018-01-10 · 百度知道合伙人官方认证企业
{
if(e.getSource() == button)
//或者e.getActionCommand().equals("确定')
{
Login window = new Login();
window.frame.setVisible(true);
}
}
这样就可以了。但是要在Login类中定义一个全局变量frame,即:private JFrame frame,并且记得初始化,frame =new JFrame();
final Button bt2=(Button) findViewById(R.id.要跳转的按键名称);
bt2.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
Intent ss=new Intent();
ss.setClass(现在所在的界面名称.this,跳转过去界面的名称.class);
现在所在的界面名称.this.startActivity(ss);
}});
startactivity(Intent)};