reflector howto

madru

Active Member
Licensed User
Longtime User
Hi,

I need a little hand here, I try to convert the following to B4A

B4X:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
intent.setClassName("com.android.odplayer","com.android.odplayer.MovieView");
Uri data = Uri.parse("udp://239.0.0.1:1234");
intent.setDataAndType(data, "video/*");
startActivity(intent);

but I am not successful with the
B4X:
setClassName
part.

how can I set the ClassName in B4A?

THX
 
Top