Emir New
سه شنبه 05 آذر 1387, 17:32 عصر
سلام دوستان
من تازه کار تو زمینه موبایل هستم
یه کد نوشتم ولی به مشکل بر خوردم می خواستم اگه ممکنه شما اساتید من رو راهنمایی کنید
/*--------------------------------------------------
* AlertSample.java
*
* Example from the book: Core J2ME Technology
* Copyright John W. Muchow http://www.CoreJ2ME.com
* You may use/modify for any non-commercial purpose
*-------------------------------------------------*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class AlertSample extends MIDlet implements CommandListener
{
private Display display; // Reference to Display object
private Form fmMain; // Main form
private Alert alTest; // Alert to show text and image
private Command cmExit; // Command to exit the MIDlet
public AlertSample()
{
display = Display.getDisplay(this);
cmExit = new Command("Exit", Command.SCREEN, 1);
fmMain = new Form("Welcome");
fmMain.append("Text string inside the Form");
fmMain.addCommand(cmExit);
fmMain.setCommandListener(this);
}
public void startApp()
{
showAlert();
}
public void pauseApp()
{
}
public void destroyApp(boolean unconditional)
{
}
public void showAlert()
{
try
{
// Create an image
Image im = Image.createImage("/tux.png");
// Create Alert, add text and image, associate a sound
alTest = new Alert("New Alert", "Time for more Java",
im, AlertType.INFO);
// Set Alert to type Modal
alTest.setTimeout(Alert.FOREVER);
}
catch(Exception e)
{
System.out.println("Unable to read png image.");
}
// Display the Alert. Once dismissed, display the form
display.setCurrent(alTest, fmMain);
}
public void commandAction(Command c, Displayable s)
{
if (c == cmExit)
{
destroyApp(true);
notifyDestroyed();
}
}
}
خطایی که به من نشون میده توی این خط هستش نمی دونم باید چه کار کنم :گریه:
public class AlertSample extends MIDlet implements CommandListenerیک برنامه ایی هم که از این سایت گرفتم دقیقا همین مشکل رو باهاش دارم
لطفا من رو راهنمایی کنید
من تازه کار تو زمینه موبایل هستم
یه کد نوشتم ولی به مشکل بر خوردم می خواستم اگه ممکنه شما اساتید من رو راهنمایی کنید
/*--------------------------------------------------
* AlertSample.java
*
* Example from the book: Core J2ME Technology
* Copyright John W. Muchow http://www.CoreJ2ME.com
* You may use/modify for any non-commercial purpose
*-------------------------------------------------*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class AlertSample extends MIDlet implements CommandListener
{
private Display display; // Reference to Display object
private Form fmMain; // Main form
private Alert alTest; // Alert to show text and image
private Command cmExit; // Command to exit the MIDlet
public AlertSample()
{
display = Display.getDisplay(this);
cmExit = new Command("Exit", Command.SCREEN, 1);
fmMain = new Form("Welcome");
fmMain.append("Text string inside the Form");
fmMain.addCommand(cmExit);
fmMain.setCommandListener(this);
}
public void startApp()
{
showAlert();
}
public void pauseApp()
{
}
public void destroyApp(boolean unconditional)
{
}
public void showAlert()
{
try
{
// Create an image
Image im = Image.createImage("/tux.png");
// Create Alert, add text and image, associate a sound
alTest = new Alert("New Alert", "Time for more Java",
im, AlertType.INFO);
// Set Alert to type Modal
alTest.setTimeout(Alert.FOREVER);
}
catch(Exception e)
{
System.out.println("Unable to read png image.");
}
// Display the Alert. Once dismissed, display the form
display.setCurrent(alTest, fmMain);
}
public void commandAction(Command c, Displayable s)
{
if (c == cmExit)
{
destroyApp(true);
notifyDestroyed();
}
}
}
خطایی که به من نشون میده توی این خط هستش نمی دونم باید چه کار کنم :گریه:
public class AlertSample extends MIDlet implements CommandListenerیک برنامه ایی هم که از این سایت گرفتم دقیقا همین مشکل رو باهاش دارم
لطفا من رو راهنمایی کنید