0

我正在制作一个简单的货币转换器 GUI(没什么花哨的),因为我将尝试在每次用户打开应用程序时合并实时汇率更新。创建布局时,我决定简单转换 3 种货币(英镑、美元和欧元)。我在 2 列中有各自的标志,每列都有 3 个标志之一。一栏供用户选择初始货币,另一栏是想要兑换的货币;如下所示带有标志的基本布局,“从”和“到”列

我创建了一个字符串数组,其中包含“英镑”、“美元”和“欧元”这些词,我想将这些标签放在标志的左侧(为了用户的应用程序清晰,因为不是每个用户都可能知道哪种货币属于哪个国家。

我创建了一个循环,它将创建一个标签并将其分配到标志的左侧,它应该制作一个“磅”标签,然后是一个“美元”,然后是一个“欧元”,每次穿过 Y 轴向南时,它们与标志对齐,然后它将重置数组计数以返回正确的字符串,沿 x 轴移动并再次重复。然而,它根本没有这样做,我得到的唯一结果是第一面英国国旗左侧的文字“磅”;如下所示:

如您所见,我只得到一个标签

下面是我的代码,如果有人能明白为什么会这样。

这是将标志添加到面板的代码

    addToMain(GBP1, mainPage, 100,100,100,100); //alligns a United Kingdom Flag to left Column
    addToMain(GBP2, mainPage, 375,100,100,100); //alligns a United Kingdom Flag to right Column
    addToMain(USD1, mainPage, 100,200,100,100); //alligns a United States Flag to left Column
    addToMain(USD2, mainPage, 375,200,100,100); //alligns a United States Flag to right Column
    addToMain(EUR1, mainPage, 100,300,100,100); //alligns a European Union Flag to left Column
    addToMain(EUR2, mainPage, 375,300,100,100); //alligns a European Union Flag to right Column

这是应该将文本标签添加到标志左侧的循环

    currencyName = new String [] {"Pounds", "Dollars", "Euros"};

    for(int i = 0; i <= 7; i++)
    {
        int count = 0; //declares a counter for the position in the currencyName array to grab the correct text for label
        xLabelAlign = 50;
        yLabelAlign = 100;

        if(count == 3)
          {
              count = 0; //resets to create both columns of labels in the application moves to the next column.
              xLabelAlign = 325;
              yLabelAlign = 100;
          }

          JLabel temp = new JLabel(currencyName[count]); //creates a new label and names it the string at position count
          temp.setFont(new Font("SERIF", Font.BOLD, 20));
          temp.setForeground(Color.WHITE);
          addToMain(temp, mainPage, xLabelAlign, yLabelAlign ,100,100); //adds it to the panel 

          yLabelAlign +=100; //moves position ready for the next text label.
          count++;  //grabs the next label in the currencyName string array.         

    }

这是向面板添加内容的方法。我已使用 set bounds 方法将内容添加到面板,以便我可以轻松地将它们放置在我想要的位置

  private void addToMain(JComponent c, JPanel p, int x, int y, int w, int h)
{
    c.setBounds(x,y,w,h);
    p.add(c);
}

任何帮助将不胜感激。

4

1 回答 1

1

快速解决方案:将您int count = 0; xLabelAlign = 50; yLabelAlign = 100;移出for循环。在 [0,5] 范围内循环。

很好的解决方案:Java 布局教程

于 2013-08-07T13:19:22.757 回答