Hi all,
I need to call an intent with some extra datas, and I found this on documentation:
..... but I don't know how to do it in B4A
How can do it ??
Thanks
Sergio
I need to call an intent with some extra datas, and I found this on documentation:
B4X:
public void XMTVPlayerPlayUri(String Title,String uri){
Bundle bnd = new Bundle();
bnd.putString("path", uri);
bnd.putString("name", Title);
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);
}
..... but I don't know how to do it in B4A
How can do it ??
Thanks
Sergio