Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavaが初めてで、ちょっとした問題に遭遇しました。JFrame全体のサイズを変更するときに、JButtonのイメージをJButtonで自動サイズ変更/フィット可能/伸縮可能に設定する方法を教えてください。JButton は GridLayout を持つ JPanel にあります。
誰かが簡単な説明を書いてくれると助かります。私が取り組んでいる電卓を完成させるためにこれが必要です。
Image img = icon.getImage(); Image newimg = img.getScaledInstance(NEW_WIDTH, NEW_HEIGHT, java.awt.Image.SCALE_SMOOTH); icon.setImage(newimg);