Reputation: 16900
I am creating a chat application using JApplet
. I have a TextArea
where all chat messages go. Everything in working fine and smooth just as you would expect a basic chat application to do. Now i want to add support for gestures. I wanted to know, how can we show an icon in TextArea? it only takes string in append()
method.
Upvotes: 4
Views: 7046
Reputation: 420921
You should probably be looking at JTextPane
instead of JTextArea
.
Have a look at this tutorial which among other things, gives this demo:
Upvotes: 3