954,168 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How do you center the text in a JTextField??

I can do it with a JLabel or a JButton, but can't figure out how in a JTextField. I thought I had found it (txtLonDay.setHorizontalAlignment(JTextField.CENTER)), but that doesn't work the way I want. I want all text entered in the field to be centered, and also all text that is displayed in the field, having been produced by the program. These JTextFields are serving double duty; they accept input and also display the results of processing.

Thanks in advance,

Chuck

Don't force it... Get a bigger hammer!

ecyarter
Newbie Poster
10 posts since Jan 2005
Reputation Points: 10
Solved Threads: 0
 

subclass it to provide the behaviour you want.

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 
subclass it to provide the behaviour you want.


Thanks... Where could I find an example of that?

Chuck

ecyarter
Newbie Poster
10 posts since Jan 2005
Reputation Points: 10
Solved Threads: 0
 

Why don't you take the number of characters the textfield is long, and how many characters the input is long, and formulate a center point out of that...Of course I would rather use setHorizontalAlignment();

server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20
 
Why don't you take the number of characters the textfield is long, and how many characters the input is long, and formulate a center point out of that...Of course I would rather use setHorizontalAlignment();


Thanks; I had considered doing that, but I (accidentally) found my real problem: The class I was filling the textfield from had an extra /t (tab) in it. When I took that out, everything worked the way I expected.

The punctuation always throws me... :o

ecyarter
Newbie Poster
10 posts since Jan 2005
Reputation Points: 10
Solved Threads: 0
 

txtName..setHorizontalAlignment(JTextField.CENTER);

:)

Colum

cbrolly21
Newbie Poster
2 posts since Dec 2011
Reputation Points: 10
Solved Threads: 0
 

@cbrolly21 ... serious..
the last post here was in april 2005 ... not to mention the facts that
a. what you suggested here, has already been suggested before
b. the OP already said his problem was solved

so ... how exactly does this post contribute to the thread?

stultuske
Posting Sensei
3,110 posts since Jan 2007
Reputation Points: 1,114
Solved Threads: 432
 

It doesn't really but was the first post that came up on google

cbrolly21
Newbie Poster
2 posts since Dec 2011
Reputation Points: 10
Solved Threads: 0
 

Try...

txtName.setHorizontalAlignment(JLabel.CENTER);

I usually do this for JLabels, but is works on JTextFields as well.

hfx642
Posting Pro
515 posts since Nov 2009
Reputation Points: 248
Solved Threads: 105
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You