Midlet.platformRequest in j2me

I am developing a game using j2me. When the level is complete, I call the URL (for example: www.google.com) using midlet.platformRequest . On some nokia devices, it is redirected to the browser, when I exit the browser, it returns to the game. But it does not work on samsung device.

 this.emidlet.platformRequest("https://www.google.co.in/");

How to solve this problem? Is midlet.platformRequest supported on all devices?

+3
source share
2 answers

From MIDlet.platformRequest () javadoc:

Return: true if the MIDlet package MUST first exit before the content is retrieved.

+4
source

OS dependent.

, midlet.platformRequest,

Nokia, , ( ).

, Samsung, 2-3 , , .

+2

All Articles