/**
* @param Title – Media Name
* @param uri – path/url to media
*/
public void XMTVPlayerPlayUri(String Title,String uri){
Bundle bnd = new Bundle();
bnd.putString(“path”, uri);
bnd.putString(“name”, Title);
bnd.putBoolean(“HiddenMode”, true); // Hide Share & Favorite button from player
bnd.putBoolean(“NoExitPrompt”, true); // Exit from player with one click of back button
bnd.putBoolean(“HideBufferLine”, true); // Hide yellow buffer status line
Intent intent = new Intent();
intent.setClassName(“com.xmtvplayer.watch.live.streams”,”org.zeipel.videoplayer.XMTVPlayer”);
intent.putExtras(bnd);
startActivityForResult(intent, 100);
}