Give the findCntVideoF container a BorderLayout and add the media to the center. I'm guessing the video is shrinking to an invisible size because it didn't have time to initialize.
On Wednesday, September 16, 2020 at 4:02:17 PM UTC+3 [email protected] wrote: > Hi, > The IP is accessible, and i add int build hint this parameter (see the > attached image) but it's still not working. > > On Tuesday, September 15, 2020 at 3:48:50 AM UTC+2, Shai Almog wrote: >> >> Hi, >> the IP must be accessible to the device. Android and iOS block HTTP URLs >> by default (only https is allowed) so try this: >> https://stackoverflow.com/questions/57121953/usescleartexttraffic-not-permitted/57130188 >> On Monday, September 14, 2020 at 5:50:59 PM UTC+3 [email protected] >> wrote: >> >>> Hi, >>> I use the code below to play a video from URL. It work on the simulator >>> but does not work on android device (xperia z3+)? >>> The code : >>> >>> protected void postTestForm(Form f) { >>> try { >>> Media media; >>> media = MediaManager.createMedia(" >>> http://178.128.204.162:3000/images/Lcode.maSpotMoutadaribine.mp4", >>> true); >>> >>> if (media.isNativePlayerMode()) { >>> media.setNativePlayerMode(true); >>> } >>> findCntVideoF().addComponent(media.getVideoComponent()); >>> media.play(); >>> Timer t = new Timer(); >>> TimerTask ta = new TimerTask() { >>> >>> public void run() { >>> media.pause(); >>> } >>> }; >>> >>> t.schedule(ta, 6000); >>> >>> } catch (Exception ex) { >>> Dialog.show("Video Error", ex.getMessage(), "Ok", "Cancel"); >>> } >>> } >>> Kind regards, >>> >>> IDE: NetBeans 12 >>> Desktop OS >>> Simulator >>> Device >>> >> -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/98cf5818-4d24-43aa-9a25-72b6625d498cn%40googlegroups.com.
