0
votes
0answers
42 views

vertical center of title and buttions in a RelativeLayout

I'm writing an android application using android 2.3.3 (API v10). I'm writing a layout XML file using a Relative Layout file to have a Title and buttons and a logo. The title and buttons should be ...
2
votes
4answers
1k views

Java Swing: Vertical Layout with fixed width and variable height

I'm looking for a layout manager (or set of layout managers) that help me to arrange my components vertically. All components (buttons) should have the same width, bordered by the underlaying dialog ...
3
votes
2answers
99 views

Line up swing components by edges

Is it possible to line up swing components? The components are in separate panels which both use flow layout. These two panels are in another panel which is using a grid layout. As you can see ...
1
vote
0answers
209 views

GWT - How to center contents inside ScrollPanel

I have a FormPanel inside a ScrollPanel. The ScrollPanel is located in the center part of DockLayoutPanel. I want to vertially and horizontally center the FormPanel inside the ScrollPanel. I tried a ...
2
votes
2answers
507 views

Java Group layout, vertical layout issues

I am trying to make a two column, 3 row layout. Something along the lines of: ---------------------- | Username |Textbox| | | Email |Textbox| | ---------------------- Yet even when I'm quite ...
2
votes
1answer
448 views

Vertical Aligning BoxLayout Spacing?

When using a BoxLayout that aligns vertically, how do you stop components from expanding as the containing JFrame grows, leaving the extra space at the bottom? Ive tried different layouts, and it just ...
-2
votes
1answer
140 views

Java Applet GUI positions

This is a mysterious problem. I have a JSlider, JLabel, and JTextField. I want them to be all adjacently aligned. My problem is that the JTextField's (valueField) is shifted up. When I print out the ...
2
votes
2answers
1k views

Java JLabel text in middle of vertical axis

I have a JLabel that contains variable text in a certain location in my GUI. The problem is that the text gets displayed at the bottom of the space where the JLabel is located. This does not convey ...
3
votes
1answer
737 views

Vertically centering text in HTML table cell in Java JLabel

I have an HTML table (styles with CSS) that is displayed in a JLabel. I would like the contents (a single, short line of text) of the cells to be both horizontally and vertically centered. Horizontal ...
0
votes
2answers
623 views

JTextPane insert component, faulty vertical alignment

I have a JTextPane, into which I need to insert a JComponent. I'm using JTextPane.insertComponent(Component) The item is indeed inserted, but the vertical positioning is too high. Instead of having ...
3
votes
5answers
4k views

How to create vertical tabs in Java?

I would like to get the effect like if JTabbedPane would be turned 90 degrees counterclockwise (only tabs but not the content inside tabs). What is the best way to implement that in Java?
1
vote
1answer
681 views

Java GUI Vertical ALIGN

So, I have 2 JPanels of different Height. I want to vertical align them both to the top. What type of container should I use and how should I add them so they are both aligned to the top, not ...
1
vote
1answer
2k views

iText: PdfTable cell vertical alignment

I'm trying to vertical align my headet cell text to be in the middle of the cell height. this is my code: PdfPCell c1 = new PdfPCell(cerate_phrase("" ,regular_bold )); ...
0
votes
1answer
938 views

JButton vertical text alignment

Hi I am making a project for college for a gallery, I have the receipt in a JList and want to put some buttons at the side of it but I am picky and want the text on the JButtons to be vertical. At the ...
1
vote
2answers
955 views

Problem with alignment of JButtons

This might be a very stupid question posted at the dead of the night. I am trying to create two JButtons placed one on top of the other. However for some reason, it is not getting properly aligned. ...
0
votes
3answers
8k views

Vertical Align of GridBagLayout Panel on BorderLayout.CENTER

What I'm trying to do is place a GridBagLayout Panel on the center of my BorderLayout and vertical align the GridBagLayout panel ( /and text on it ) to the TOP ( because it automaticly puts it in the ...