nadam app
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class Album extends MIDlet implements CommandListener {
public Album() { }
protected void startApp() {
try
{
if(this.platformRequest("http://www.nadam.mobi/index.php"))
{
this.notifyDestroyed();
}
return;
}
catch(Exception ex) { }
}
protected void pauseApp() {}
protected void destroyApp(boolean bool) {}
public void commandAction(Command cmd, Displayable disp) {}
}
http://www.anddev.org/impressive_preview_to_the_next_sdk_version_at_google_io-t2205.html
import javax.microedition.lcdui.*;
public class Album extends MIDlet implements CommandListener {
public Album() { }
protected void startApp() {
try
{
if(this.platformRequest("http://www.nadam.mobi/index.php"))
{
this.notifyDestroyed();
}
return;
}
catch(Exception ex) { }
}
protected void pauseApp() {}
protected void destroyApp(boolean bool) {}
public void commandAction(Command cmd, Displayable disp) {}
}
http://www.anddev.org/impressive_preview_to_the_next_sdk_version_at_google_io-t2205.html
Comments