HW là Hello World code, mời xem bài đầu tiên.
Hôm nay mình sẽ hdsd Alert - thông báo. Alert là thông báo lỗi, hiện thông tin, báo nguy hiểm, báo hẹn giờ, hiện thanh loading...
Cấu trúc khai báo:Alert tên=new Alert("tiêuđề","nội dung", ảnh thêm vào, kiểu);
Mời xem code:
..
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class c extends MIDlet {
Alert al=new Alert("thong bao","ban bi gay?",null, AlertType.INFO);
public void startApp() {
Display.getDisplay(this).setCurrent(al);
}
public ...