Embed Youtube video inside an Android app

后端 未结 9 1270
野性不改
野性不改 2021-01-29 23:01

I\'m using a WebView for displaying embedded Youtube video and that works on Galaxcy S2 (OS 2.3.5) and doesn\'t on Nexus S (OS 2.3.4), all I get is white screen without any vide

9条回答
  •  悲&欢浪女
    2021-01-29 23:51

    Pretty simple: Just put it inside a static method.

    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(linkYouTube)));
    

提交回复
热议问题