eclipse中jframe如何使用,怎么创建按钮对应的事件,是设置,还是敲代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse中jframe如何使用,怎么创建按钮对应的事件,是设置,还是敲代码相关的知识,希望对你有一定的参考价值。
首先在你的helloworld程序对应的layout配置文件(res/layout/下的XXX.xml文件)中添加一个按钮,具体代码如下<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
android:orientation="vertical"
android:layout_
android:layout_>
<!-- 下面这段就是添加的button -->
<Button android:id="@+id/button"
android:layout_
android:layout_
android:text="change background" />
</LinearLayout>
然后在你的继承Activity类的java类中添加按钮的事件监听以及事件处理,代码如下:
public class 你的helloworld类名 extends Activity implements OnClickListener
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.你的layout文件名);
//下面的代码用于为按钮注册一个监听
findViewById(R.id.frame_layout).setOnClickListener(new OnClickListener()
//下面的代码用于处理按钮点击后的事件
public void onClick(View v)
//下面的代码用于使背景变色
findViewById(R.id.layout).setBackgroundColor(Color.BLUE);
);
参考技术A 常规的是敲代码。
如何在jframe中的jpanel中设置单选按钮?
【中文标题】如何在jframe中的jpanel中设置单选按钮?【英文标题】:How to setup radio button in jpanel within the jframe? 【发布时间】:2019-03-03 16:46:21 【问题描述】:单选按钮似乎没有正确组合在一起,因为其中一个按钮略微向左倾斜。我不确定错误是什么。代码中的所有内容对我来说似乎都很好......我不确定缺少什么。 我在下面附上了一张图片,显示了这个问题。我使用的IDE是NetBeans。
提前谢谢你! :)
package pizzaorder2;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.FlowLayout;
import javax.swing.SwingUtilities;
import javax.swing.JRadioButton;
public class PizzaOrder2 extends JFrame
public static void main(String[] args)
JFrame frame = new PizzaOrder2();
JRadioButton tomato = new JRadioButton("Tomato");
JRadioButton barbeque = new JRadioButton("Barbeque");
ButtonGroup group = new ButtonGroup();
group.add(tomato);
group.add(barbeque);
JPanel radiopanel = new JPanel();
radiopanel.add(tomato);
radiopanel.add(barbeque);
frame.getContentPane().add(radiopanel);
radiopanel.setBounds(240,330,110,70);
radiopanel.setOpaque(false);
tomato.setForeground(Color.white);
barbeque.setForeground(Color.white);
frame.setLayout(null);
frame.setSize(600, 700);
frame.getContentPane().setBackground(new Color(40, 80, 120));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
【问题讨论】:
【参考方案1】:尝试将radiopanel调整为:
JPanel radiopanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
为了更好地解释,您只是将其设置为使项目在左侧对齐,而不是居中(我认为这是默认设置)。您需要为此导入 FlowLayout。
【讨论】:
很高兴为您提供帮助 :)以上是关于eclipse中jframe如何使用,怎么创建按钮对应的事件,是设置,还是敲代码的主要内容,如果未能解决你的问题,请参考以下文章
netbeans6.9.1中,如何能设置一个图片作为JFrame窗体的背景?