在J2ME中,关于Alert类是用来向用户发出警告信息,一般Alert提供信息的类型有:警告、错误、通知、确认等
Alert的可以自动定时解除,也可以设定一直保持在屏幕上让用户手动解除
setTimeout(Alert.FOREVER)
Alert类常用的方法, 类型 方法 说明
void addCommand(Command cmd)添加命令
int getDefaultTimeout()获取默认的Alert解除时间
Image getImage() 获取Alert图标
Guage getIndicator() 获取Alert的解除时间
String getString();获取Alert的文本内容
int getTimeout(); 获取Alert的解除时间
AlertType getType()获取Alert的类型
void removeCommand(Command com) 移除命令项
void setImage(Image img) 设置Alert图标
void setIndicator(Gauge indicator)设置Alert指示器
void setString(String str)设置Alert显示内容
void setTimeout(int time) 设置Alert解除时间
void setType(AlertType type) 设置Alert类型
void setCommandListener(Command listener) 设置鉴听者
AlertType定义字段 类型 字段 说明
static AlertType ALARM 向用户警告一个事件
static AlertType CONFIRMATION 用来确认一个用户动作
static AlertType ERROR 向用户警告一个错误操作
static AlertType INFO 向用户提供一条一般性信息
static AlertType WARING 向用户警告一个危险操作