Code: Select all
Intent i = new Intent(Intent.ACTION_VIEW);
i.setComponent(new ComponentName("org.videolan.vlc.betav7neon", "org.videolan.vlc.betav7neon.gui.video.VideoPlayerActivity"));
i.setData(Uri.parse(url));
i.putExtra("itemTitle", "your video title");
startActivity(i);