How to add buttons and panels in frame in java?

how to add buttons and panels in frame in java awt

  • How to make java awt program in which first line contains text-field,next 5 lines contain 5 buttons each and next 4 lines contain 4 buttons each. And how to set the size of those buttons and space between them ? I have tried this using 3 panels but not working. (sample program made by me but is not showing anything) `import java.awt.*; class cal extends Frame { cal(){ Panel p1=new Panel(); Panel p2=new Panel(); Panel p3=new Panel(); p1.setLayout(new GridLayout(2,3)); p2.setLayout(new GridLayout(2,2)); TextField k=new TextField("0",20); Button a=new Button("HI"); Button b=new Button("HI"); Button c=new Button("HI"); Button d=new Button("HI"); Button e=new Button("HI"); Button l=new Button("Hello"); Button g=new Button("Hello"); Button h=new Button("Hello"); Button i=new Button("Hello"); p1.add(a); p1.add(b); p1.add(c); p1.add(d); p1.add(e); p2.add(l); p2.add(g); p2.add(h); p2.add(i); Frame f=new Frame(); f.setSize(500,500); f.add(p3); f.add(p1); f.add(p2); show(); } public static void main(String[] args){ new cal();} }`

  • Answer:

    Don't use AWT library components for your GUI, but rather use the Swing library's components such as JFrame, JPanel, JButton... To view something on the top level window, you have to add your components to the displayed top level window, and you never do this. In other words you need to add your Panels (which should be JPanels) to the main class via the add(...) method. You add them to a Frame object you call f, but you display the Frame that represents the current class, the this -- two very completely different objects. One way to get your code working is to not have your class extend a top level window, but instead to create a top level window (as you're doing) and display it after adding components (as you're not doing). Avoid calling deprecated methods like show(). Doing this can be dangerous, your compiler should give you a warning about this, and you should heed the warning. Learn about the layout managers and use them. You are currently using them since your components come with default layout managers, but are not using them correctly. Most important, read the tutorials which you can find http://stackoverflow.com/tags/swing/info, as you can't guess at this stuff. Don't post code here that is all left justified as it is very hard to read.

user3502857 at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

you need to replace GridLayout value of p1 and p2 to p1.setLayout(new GridLayout(5,5));//To incease gap between components you need to use new GridLayout(5,5,hgap,ygap) p2.setLayout(new GridLayout(4,4));//similar here. and you code is not correctly done here remove the show() function and replace it with : f.setLayout(new GridLayout(3,1));// you may want three rows and 1 column for this. f.setVisible(true);//for frame should be visible. pls follow the link how to increase gap between components in gridlayout: http://docs.oracle.com/javase/tutorial/uiswing/layout/group.html. Why dont you use Java swing. it is better and have advanced features. your modified code will be this: import java.awt.*; public class Cal extends Frame { Cal(){ Panel p1=new Panel(); Panel p2=new Panel(); Panel p3=new Panel(); p1.setLayout(new GridLayout(5,5)); p2.setLayout(new GridLayout(4,4)); TextField k=new TextField(); Button a=new Button("HI"); Button b=new Button("HI"); Button c=new Button("HI"); Button d=new Button("HI"); Button e=new Button("HI"); Button l=new Button("Hello"); Button g=new Button("Hello"); Button h=new Button("Hello"); Button i=new Button("Hello"); p1.add(a); p1.add(b); p1.add(c); p1.add(d); p1.add(e); p2.add(l); p2.add(g); p2.add(h); p2.add(i); p3.add(k); Frame f=new Frame(); f.setLayout(new GridLayout(3,1)); f.setSize(500,500); f.add(p3); f.add(p1); f.add(p2); f.setVisible(true); } public static void main(String[] args){ new Cal();} }

Raju Sharma

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.