- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让 ImageIcon PNG 图像在 Java 中的 GUI 上移动。但我收到此错误:
MainClass.java:31: error: <identifier> expected
x = x--;
^
1 error
这是我的代码:
public class MainClass extends JPanel {
public static void main(String[] args) {
JLabel label;
JPanel panel = new JPanel();
ImageIcon image = new ImageIcon("Character Face Left - Bronze.png");
int x = 300;
int y = 300;
label = new JLabel(image);
label.setLayout(null);
JFrame frame = new JFrame("Rover: Bound to Earth");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(label);
frame.setSize(500,500);
frame.setVisible(true);
InputMap inputMap = getInputMap(WHEN_IN_FOCUSED_WINDOW);
ActionMap actionMap = getActionMap();
inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_A, 0), LEFT);
actionMap.put(LEFT, new AbstractAction() {
x--;
} );
label.setLocation(x,y);
}
}
我想要发生的是,当按下“A”键时,ImageIcon 移动到左侧。我尝试使用 x 和 y 设置 ImageIcon 的位置,并在按下“A”键时发生 x-- ,但我再次收到错误。
最佳答案
稍微修改一下你的代码:
// originally this extended JPanel, but was never used...
public class MainClass extends AbstractAction
{
// he label to be moved
JLabel label;
// the co-ordinates
int x = 300;
int y = 300;
// constructor... moved your code from main() to here...
public MainClass()
{
// instantiating panel and label
final JPanel panel = new JPanel();
final ImageIcon image = new ImageIcon( "Character Face Left - Bronze.png" );
// but as i do no have your image, i added some text...
label = new JLabel( "IMG", image, JLabel.CENTER );
// and specified he size of the label
label.setSize( 100, 50 );
// initial positioning
label.setLocation( x, y );
final JFrame frame = new JFrame( "Rover: Bound to Earth" );
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
// the frame is the one hat lays out its child components
// so it is the one to set he layout to null, not the label...
frame.setLayout( null );
frame.add( label );
frame.setSize( 500, 500 );
frame.setVisible( true );
// setting up he key event, however his still not working
InputMap inputMap = panel.getInputMap( JComponent.WHEN_IN_FOCUSED_WINDOW );
ActionMap actionMap = panel.getActionMap();
// your LEFT identifier should be an object, that is unique,
// i just used the string "LEFT"....
inputMap.put( KeyStroke.getKeyStroke( KeyEvent.VK_A, 0 ), "LEFT" );
actionMap.put( "LEFT", this );
}
// the action's listener
@Override
public void actionPerformed( ActionEvent e )
{
// decrement x, and also move the label
x -= 10;
label.setLocation( x, y );
}
// a new main()
public static void main( String[] args )
{
// AWT uses a special thread to queue, dispatch and execute events
// the SWING GUI must run on the AWT Event Dispatch Thread
SwingUtilities.invokeLater( () ->
{
new MainClass();
} );
}
}
此代码将运行,但仍然无法正常工作,因为Key Press->Acion
转换在某处被破坏。我对 Action
不太了解,无法在这里提供真正的帮助。
尝试在新问题中询问它...
关于java - ActionMap/KeyBindings - <identifier> 预期错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46127073/
用户特定的 keyBindings .dict 文件位于:~/Library/KeyBindings/ 您(作为开发人员)如何告诉 AppKit 在另一个目录(特定于应用程序)中查找特定应用程序的另一
我想创建一个 StaticResource KeyBinding,但我不知道如何取消引用它。因此,在我的 Window.Resources 中,我可能会添加以下内容:
好的,这是代码 Gui.java package mainProgram; import javax.swing.*; import java.awt.*;
我需要 issgin CTRL+F12 和 CTRL+G 此代码不起作用 但是这段代码有效 为什么不工作? 如何分配 CTRL+F12 和 CTRL+G? 最佳答案 使用代码设置绑
这段代码适合多次按下箭头键吗?现在正在工作。向右走,向左走。但是,如果我同时按下向左和向右箭头键,我希望该桨停止。我怎样才能做到这一点 ? import java.awt.*; import java
在我的表单中,当我按下键盘上的 ENTER 按钮时,应该调用 okAction() 方法(并且调用完美)。 我的问题是处于焦点状态,当我填写文本字段然后按下 ENTER 按钮时,okAction()
简短版本:如何通过与 KeyListener keyReleased() 事件类似的功能来确定 KeyBind 键何时被释放? 长版:我正在尝试制作一个非常简单的游戏,并且我使用了几个 KeyList
我不太确定如何用这个问题的标题来表达。基本上,我正在使用 JFrames 制作太空入侵者,并使用 KeyBindings 进行键盘输入。键绑定(bind)工作正常,我可以毫无问题地移动飞船。但是,如果
Python-keybinder 用于在我的程序中设置全局热键。 GtkToggleButton 小部件用于从用户检索键绑定(bind)(按键事件/按键释放事件)。 用户按下切换按钮并按下一些键(左
我正在尝试从 Java KeyListeners 转移到 KeyBindings 来进行动画处理,但它们会工作几秒钟,然后完全停止。当 Action 触发时,我将消息打印到控制台,并且这些消息停止,因
我正在努力创建一种识别组合键的方法。在我设置任何 boolean 值之前,我注意到某些组合键会导致忽略其他键。 package question; import java.awt.BorderLayo
无论出于何种原因,一旦我的 WPF 应用程序加载,我的 UserControl 的 KeyBindings 就无法工作。在我按下表单上的按钮后,它们会起作用,但当我通过单击或 alt 选项卡或移动或类
我想将键绑定(bind)添加到我的 JFileChooser以便在按下 SPACE 键时打开文件预览窗口。 由于源代码太大,我只是做了一个简单的脏代码: MainWindow.java package
我有一个 Jpanel (p)、一个 Jframe (f) 和这个标签 (cursorlbl),我想通过箭头键四处移动。我已经在 goLeft() 方法中做了我认为合理的事情......但它不起作用。
在我的程序中,由使用 KeyBindings 的监听器操作的 JPanel 组件(在阅读有关聚焦问题后已经从 KeyListeners 更改)被添加到 JFrame 中。这个应用程序的任务是简单地使用
我正在尝试制作一个简单的游戏,我需要我的宇宙飞船在其中心旋转(使用 A 和 D 键),并相对于它所面对的方向移动(W 和 S 键)。 我已经基本弄清楚了移动和旋转的数学原理,但我对关键听众有疑问。 当
因此,如果我在 Tmux 中并且有一堆输出到达终端,我可以按以下键滚动浏览它: ctrl-b [ 现在,我必须举起双手并使用箭头键向上滚动。 如何在滚动模式下映射 vim 键? 最佳答案 2020年更
我读到使用 KeyBindings 比使用 KeyListeners 更好。我看到了 KeyBindings 如何对特定键的特定 react 有用;但我也在尝试检测键盘上任何键的按下/释放:有没有办法
我对 Swing 的使用并不陌生,但我用它做了很多工作,并且我正在设计一个新的应用程序。这是一个绘图应用程序。它将允许用户单击空白的白色“查看器”窗口中的某些位置,使用键盘键入字母和符号,从而编辑查看
我有一个程序,我想使用键绑定(bind): // Imports.. public class Test{ JButton button = new JButton(); Test(){ //...
我是一名优秀的程序员,十分优秀!