Setting text with two different font size on JButton [closed] - java

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have to make an on screen keyboard for a swing application. In that I need to write text with different font size on the same JButton. I want to make keyboard like in smartphones.
for example:
jButton.setText(1(font size 30) ABC(font size 10));
As in the above example I want to set "1" with font size 30 and "ABC" with font size 0f 10.
Can anyone tell me how can I achieve this.
Thanks in advance.

Use HTML as text. Something like this:
button.setText("<html><font size=\"1\">small</font> <font size=\"7\">huge</font></html>");

Related

Is there any package without awt, swing for finding string length in java [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Hi am new to java is there any other way to find string length pixel without using awt and swing
No. The length depends on how the String is rendered, so obviously only libraries that know how to render a String will be able to tell how big it would be.
It's as if I asked you to tell me the required dimensions if I wrote my username on paper.

How to construct a JTextArea [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am a very new programmer, it is part of my degree requirements and I am having a hard time with it. I am working on basically a three part GUI and I am wondering how I would create a JTextArea that will display each item that is entered.
Start by taking a look at Creating a GUI With JFC/Swing, this will give you a basic grounding in how to use Swing.
Take a closer look at How to Use Text Areas for specific details about how to use JTextArea

Can I put an ActionListener on a TextArea? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Is there a way I can set a listener for if the TextArea is edited by the user?
If that is not possible, can I add one to its focus?
Get the document the text area is using via textArea.getDocument()
Then write a document listener. The document listener will tell you whenever the user edits the text area.

Add formatted text [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
im stuck on a simple question, i want to display formatted text in a swing control and keep on adding new values into it, i don't want to use .setText(.getText + text) for personal reasons, (something like the append method for text area is what I am looking for) I've tried JEditorpane, Textpane but all of them do not have append method. Which swing control should I use?
While JEditorPane has no append method, you can certainly add text to its Document via its insertString(...) method, and I suggest that you look into doing this.
Edit
You ask:
it worked it out but it seems it works like setText, all the previous data vanishes.. how do i keep the previous data ?
Are you correctly passing in the first parameter, the offset? This should be the length of the current Document.

Generate Textfield as per number given by user in java [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Requirement is like:
I want to take input values from user in frame but no of inputs is also decided by user.
So first,
In frame,I want user to write no of values in one text field
so as soon as user writes that many text fields should be generated in the same frame.
How can this be done?
Is this possible or is there any good way available for this?
I would use a table instead. Either the user can directly edit the table or you provide a "Add New Row" button. In my opinion changing the UI layout (adding text fields) at runtime is bad design.

Categories

Resources