1

I am working on developing a hybrid mobile application, we already have a mobile interface for the application and we used WebView on Android to give users the sense of a stand-alone application. The question is how can I do that on, let's say, Nokia phones?

-- Thanks;

Muotaz
  • 53
  • 1
  • 4

1 Answers1

3

If you can use LWUIT there is HTMLComponent: http://docs.oracle.com/javame/dev-tools/lwuit-1.4/LWUIT_Developer_Guide_HTML/bbjidhgf.html.

The most simple use case of HTMLComponent is rendering rich text:

HTMLComponent htmlC = new HTMLComponent(null);
htmlC.setBodyText("Hello <b>bold text</b>");
Telmo Pimentel Mota
  • 4,033
  • 16
  • 22
  • According to this blog entry http://lwuit.blogspot.com.br/2009/10/bidi-oh-so-many-changes.html you should call UIManager.getInstance().getLookAndFeel().setRTL(true). Did you do this? – Telmo Pimentel Mota Jul 17 '12 at 01:39
  • We didn't do that, we will test it and see! Thanks – Muotaz Aug 05 '12 at 15:34
  • @TelmoPimentelMota I know Stack Overflow is not the forum for this, but if you're still able to do JavaME development projects on LWUIT, I would love to talk to you. I see no other way of contacting you... – theglossy1 Nov 08 '17 at 04:29
  • @theglossy1 I just updated my profile adding my LinkedIn page. Can you reach me there? – Telmo Pimentel Mota Nov 09 '17 at 14:29