0
votes
3answers
35 views

Aligning Shape's Center to JPanel's Center

I have been trying to align my java2d shape's center to the JPanel's center with no success. I was able to do it for an image and many 2D shapes like parallelogram using getBounds method but not for ...
0
votes
0answers
26 views

Eclipse: Blockwise field alignment with Java Code Formatter

I am using the code formatter and want a special form of alignment for fields. I am not too happy with the option "align fields in columns". I don't like that all fields are aligned the same way, ...
0
votes
0answers
25 views

JOptionPane doesn't align to parent JFrame

This is driving me crazy: I programmed a small JFrame with several JPanels inside. I have several error messages that I have created with JOptionPane.showMessageDialog(this, "Text here"); But it ...
1
vote
2answers
51 views

set alignment of JTextField

My question is with reference to this post here JTextField : How to set text on the left of JTextField when text too long If the string is too long, is there any way to display the text in the next ...
0
votes
1answer
109 views

iText unicode font issue

I have been working with ttf font in java using itext (lowagie) sdk. I would like to explain my problem by example. I have a table row where I want to show some text ( bengali ttf). The text is ...
0
votes
3answers
54 views

Align printf output in Java

I need to display a list of items with their prices from an array and would like to align the prices. I almost have it working but needs improvements. Below is the code and the output. Any ideas how ...
1
vote
0answers
65 views

GridBagLayout - All components to top left

How is it possible in the following GridBagLayout Code, to set alle components realtive to the top left corner. Now the components are always centered and it doesn't look that nice. I searched in many ...
1
vote
2answers
119 views

Align text and icon differently in JLabel

i'm trying to create a JLabel that has text aligned left and icon aligned right, i tried this code: _ip = new JLabel(ip); _ip.setFont(boldFont); _ip.setBounds(5, 0, 100, 50); ...
1
vote
1answer
46 views

How would you center a JMenu's Popup?

I'm trying to center a JMenu's popup so I can use it on a JPanel and it doesn't look off. Here is some code that demos what I am trying to do: import javax.swing.*; public class Menu extends JMenu{ ...
6
votes
5answers
381 views

No line break before comment after else in Eclipse

I've long been a "align curly braces" person. And with wide monitors I put long comments after code. So in Eclipse I want to do format things like this: if(foo) { something(); } else { ...
1
vote
1answer
137 views

Java JTextField text align

I have a JTextField with rather big bounds, the text however does not behave like I want it to. _________________ | | | | |text | | | ...
0
votes
0answers
28 views

baseline + fill in MigLayout

I want to align two components at their baseline, but one of them should vertically fill the remaining space. See this example: import com.jgoodies.looks.plastic.PlasticXPLookAndFeel; import ...
0
votes
0answers
47 views

Thermal printer issue by g2d.drawString alignment using Java

How to align the below formatted data in g2d.drawString() Particulars |Rate |Qty |Amount | Dhayaseelan | 123.45| 2.00| 260.60| GoodDay ...
0
votes
1answer
79 views

sparse matrix alignment

is there any way to align these values in my sparse matrix? 0 0 0 0 8 2 0 0 0 19 11 0 0 11 0 13 0 0 0 18 0 0 7 0 0 0 0 0 4 0 0 0 3 0 0 0 at the moment i have this: ...
2
votes
1answer
77 views

How do I right align a search bar in a Java SWT Unified ToolBar (OS X)

How would one go about to align an item to the right in a Java SWT unified toolbar under OS X? I don't want to align all the items to the right but rather just the search field. The question marked ...
-1
votes
2answers
93 views

Alignment in Jasper Report

Can I pass properties like height,width,top,left of parameter through java code(Swing) for Jasper report
0
votes
1answer
57 views

How to show image or text based on some condition

I have JR report in which image and Text Fields are present in the Title band. I have taken image from database and fields from passed parameter. Now I want that text field in center when image is ...
0
votes
2answers
87 views

Jtable, use different alignment for each ROW

I have created a table and need to align every second row to the right, and every other row to default. I understand how to align the rows. This is my default renderer final ...
0
votes
1answer
44 views

Relativelayout circual dependancy

I'm trying to create my android app for a lot of different devices so I'm trying to avoid using fixed heights and width and instead using the property WRAP_CONTENT. Now I need to create a textview on ...
0
votes
4answers
156 views

How to Align A Table in Java

How to align my Array so it does not look that awful? In other words, How do I format a table that is readable? The System.out.print(" "); is a pretty inefficient manner for spacing for a table... ...
1
vote
1answer
79 views

JTabel indivual cell text alignment

Basically I have a JTable, and this JTabel will have a product in one cell, and then in the cell directly below it the cost. The product name should be aligned to the left. The product cost should be ...
0
votes
2answers
107 views

Aligning a JLabel with a JScrollPane in a BoxLayout

I'm trying to align a JLabel and a JScrollPane (containing a JTextArea) to the left of a JPanel. When I put the JTextArea directly in the panel, the alignment is correct. The alignment is only ...
3
votes
2answers
90 views

Printing comma-aligned doubles to printer device with Java

For a project I need to print some numbers to the printer. They need to be printed below eachother, aligned on the comma. The font is not and can not be a monospaced one. I'm using a ...
0
votes
1answer
98 views

Problems with java swing component listener

I'm creating a GUI in netbeans and am attempting to make it so that the components stay properly aligned when the frame is resized, minimized, maximized, etc. I've added a component listener to do ...
0
votes
0answers
15 views

Host to align ListViewer to right in Java

I'm trying to align ListViewer to the right of the cell. parent.setLayout(new GridLayout(3, false)); ... Button btn1 = new Button(parent, SWT.PUSH); Button btn2 = new Button(parent, SWT.PUSH); ...
1
vote
1answer
80 views

How to fix position of layout in a view in eclipse

I am adding a filter in Git repo page and modified the class RepositoryView. I just mentioned this so that you can find this code online if needed. My question is more of a generic alignment issue. ...
3
votes
1answer
149 views

Eclipse: Auto-align “=” in assignments

How do one convert a block of variable assignments, e.g.: private final String s1 = "10011"; private final String s2 = "01100"; private final String ones = "11111"; private final String zeros = ...
2
votes
1answer
308 views

How to center text and a JComponent in a JTextPane vertically?

Currently it looks so What to do so that it looks so? Below is my code: JFrame f = new JFrame(); JTextPane textPane = new JTextPane(); JTextField component = new JTextField(" ...
1
vote
1answer
310 views

Java learn using SWT gridlayout and griddata

I understand and can use FormLayout, FormData, FormAttachment but I can't understand how GridLayout, GridData is working. I want to learn using GridLayout and GridData because it's more like a table, ...
1
vote
1answer
223 views

Align CheckBox in a dailog

I want to align a check box(red highlighted area)According to other respective fields. This is main method i am using to generate this public class DialogTesting extends JFrame{ public static ...
2
votes
1answer
229 views

JFrame title won't align properly

I have simple JFrame window and its title keeps floating to the right (although written in english). Living in the middle east but using english version of Windows 7. what would be the correct way to ...
2
votes
2answers
136 views

Center a JToggleButton ImageIcon

I've created a JToggleButton and when it is selected the image is shown. It all works perfectly except the image isn't centered on the button. The top left corner of the image is on the center point ...
1
vote
2answers
89 views

Alignment issues with BoxLayout

I am making an application for which I am using a BoxLayout. As you can see in the following picture, when the title string is short, it's perfect. But as the string gets longer, the JLabel gets more ...
3
votes
2answers
97 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
263 views

JMenuItem text and accelerator alignment in right to left orientation

I'm using right to left menus in a Java application. I used this on all JMenuBar,JMenu & JMenuItem elements to make them right to left: ...
1
vote
3answers
961 views

JButton: Icon left-aligned, text right-aligned

I'm trying to create a JButton with an icon and some text in it. My problem is that I want the icon to be left-aligned and the text right-aligned (It isn't necessary to be right-aligned, but I don't ...
2
votes
1answer
412 views

JFreeCharts axis : tick labels alignment

I'm using jFreeChart 1.0.14. I have graph with a horizontal DateAxis. And I'm trying to center the tick labels so that they would be within two subsequent ticks. JFreeChart aligns tick labels in ...
1
vote
3answers
71 views

How to programatically find out how many “tabs” a string can fit in?

Suppose I have a Java String. "abcdefghijklmnopqrstuvwxyz0123456789...." Is there a way to find out how many tabs this can "fit" in? So, for instance, If I print "\t\t\t\t\t..." at what ...
0
votes
1answer
104 views

Positioning panel vertically centrally in grid layout

I am trying to build a sudoku puzzle with grid layout to the contentpane and adding my Cell objects(extends JPanel) to it. However, I am not able to align the components vertically centrally. Please ...
1
vote
1answer
93 views

Java Swing stack components vertically without spreading out

I've been trying for ages to get a list of JPanels to stack vertically without spreading out to all available vertical space. The container is a JPanel with a BoxLayout Here is what is happening ...
2
votes
2answers
359 views

Aligning components of a JScrollPane to the left?

Currently, I have a JScrollPane nested within a Panel having a BorderLayout. More importantly, within the JScrollPane, I intend to have multiple text areas listed vertically, with a width that does ...
1
vote
2answers
64 views

Aligning my views to the right

Alright, what I'm trying to do is: setting an imageview to be on the right and the 3 textviews will be located on the left relative to the image. With the following XML code, the imageview is on the ...
1
vote
3answers
92 views

text align in label error?

at now i am trying to add a label beside a frame. And i have a text for the label and want to align it to center but it fails and always be left-align. Please help me! Simulation sm = new ...
0
votes
2answers
156 views

JLabel alignment issues

So, I have a problem. I have a JPanel(BoxLayout, Y_AXIS). In it, I have JLabel, and JTextArea. JTextArea expands freely as I fill it with text, expanding the JPanel with it. JLabel expands to. That ...
2
votes
3answers
2k views

How do I left and right align components in Swing?

I have what appears to be a simple issue. I have some labels that I'd like to align to the left but when I resize, they start to drift towards the middle. This is going to throw off the alignment of ...
0
votes
0answers
120 views

java:miglayout: make layout of one panel depending on layout of another panel

I have a resizable (it can be not resizable) Dialog with some text and a table created as set of different JPanels: description +-----------+-------------+--------------+ | attribute | old values ...
1
vote
2answers
59 views

Recommendation for Layout Manager

I am creating a GUI for an arcade game. It consist of a single JFrame with some JPanels and one JMenu as shown in the figure: I've been trying using BorderLayout but it doesn't show the panels ...
2
votes
2answers
261 views

Aligning Decimal when convert int to string

I understand that in Java you can use printf such as System.out.printf("check1 = " + "%11.5f percent\n", 2.0564); System.out.printf("cat = " + "%11.5f percent\n", 1232.05); But if say you ...
3
votes
2answers
227 views

JLabel with Icon aligned to left

I have a JLabel with a Icon and text aligned to bottom, the icon is center to the text, how do i have the Text and the icon aligned to left and the text below the icon. My current code is as below ...
1
vote
2answers
349 views

Make JLabel html content right-to-left

I want to change a JLabel's content direction to be right to left. The Jlabel content is HTML and I tested all these (& none of them worked!): ...

1 2 3