Android - 開啟Youtube App 播放 Youtube 連結

摘要:Android - 開啟Youtube App 播放 Youtube 連結

            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(YoutubeUrl));
            intent.setPackage("com.google.android.youtube");
            intent.putExtra("force_fullscreen",true); 
            ctx.startActivity(intent);