Reputation: 320
I would need to open a youtube link when clicking on the related element on my list. How can I do this in codename one? (Opening the system web browser to this link would be fine)
Upvotes: 0
Views: 199
Reputation: 7483
To open the link in your default browser, call:
Display.getInstance().execute("https://www.youtube.com");
Upvotes: 2