Yesterday, I did Career Guidance in ICT that Organized by Sri Lanka Foundation Institute. I did session ‘Developing Simple Mobile Applications’.
I briefed about Mobile application development
“Mobile application development is the process by which applications are developed for small low-power handheld devices such as personal digital assistants, enterprise digital assistants or mobile phones. These applications are either pre-installed on phones during manufacture, or downloaded by customers from app stores and other mobile software distribution platforms.”
This was the path for the session on that day
- › Introduction on about Mobile application development
- › Platform and Environment
- › Platform development environment
- › J2me Hello world (Demo)
- › Windows Phone 7 application (Demo)
Links for download these IDE’s
Here is the link for downloading net beans for j2ME: http://netbeans.org/downloads/start.html?platform=windows&lang=en&option=java
Expression Blend 4 Release Candidate (RC) is available for download here. http://www.softpedia.com/get/Multimedia/Graphic/Graphic-Editors/Microsoft-Expression-Blend.shtml
Visual Studio 2010 Express is available for download here. http://www.microsoft.com/express/Downloads/
Here is that j2ME Hello world code
HiMidlet.java
package hello;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class HiMidlet extends MIDlet {
private Display display;
private Form form;
public void startApp() {
form = new Form("Sri Lanka Foundation");
String msg = "Hello to j2ME";
form.append(msg);
display = Display.getDisplay(this);
display.setCurrent(form);
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
}
Here the links to download project file
J2me Application: http://rapidshare.com/files/427559037/HelloICT.zip
Windows phone 7 Application: http://rapidshare.com/files/427563269/hiwp7.zip
Here is jar application for j2me: http://rapidshare.com/files/427563269/hiwp7.zip
View comments