每次用户点击下一个按钮时,如何逐个显示一系列图像? 我有几个图像存储在数组中。我用旁边的按钮从图像到图像。如何编程按钮?我使用了动作监听器,但我只是不知道如何回到阵列。
答案 0 :(得分:0)
我知道我没有写完整个代码而在这里很懒,但无论如何都要进行。
class whatEver implements ActionListener{
JButton btnNext = new JButton();
static int fileNumber = 0;
static int totalFiles;
void functionLoadInterface () //Function with
{
btnNext.addActionListener(this);
//Initialize array ImageArray with file paths.
}
public void cycleImage()
{
String file = ImageArray[fileNumber%totalFiles];
//Code to load the image wherever follows
}
public void actionPerformed(ActionEvent e)
{
filenumber++;
this.cycleImage();
}