I've got a problem when using the BrowserComponent in Codenameone: When calling the dropbox authorization URL in the BrowserComponent within the simulator, the page is displayed, but the charset seems wrong:
I cannot read the text displayed in the browser (nonsense text) - but when I copy & paste the text from the browser component to the texteditor, the text is readable. What can I do to make the text readable in the browser component?
Here's the code I use to use the browser component:
Form tmpBrowserForm = new Form(„DropBoxAccess“);
tmpBrowserForm.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
WebBrowser tmpBrowser = new WebBrowser(„https://www.dropbox.com/oauth2/authorize?response_type=code&client_id=xyz“);
tmpBrowserForm.add(tmpBrowser);
