valbrux
valbrux

Reputation: 320

Open Youtube Application to a video/Web Browser to a video on Codename One

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

Answers (1)

Diamond
Diamond

Reputation: 7483

To open the link in your default browser, call:

Display.getInstance().execute("https://www.youtube.com");

Upvotes: 2

Related Questions