国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

播放不同的Alert聲音

2019-11-18 16:07:41
字體:
來源:轉載
供稿:網友
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

public class SoundAlert extends MIDlet implements ItemStateListener, CommandListener
{
  PRivate Display display;      // Reference to display object 
  private Form fmMain;         // Main form
  private Command cmExit;      // Command to exit the MIDlet
  private ChoiceGroup cgSound; // Choice group

  public SoundAlert()
  {
    display = Display.getDisplay(this);

    // Create an exclusive (radio) choice group
    cgSound = new ChoiceGroup("Choose a sound", Choice.EXCLUSIVE);
    // Append options, with no associated images
    cgSound.append("Info", null);    
    cgSound.append("Confirmation", null);    
    cgSound.append("Warning", null);            
    cgSound.append("Alarm", null);        
    cgSound.append("Error", null);    

    cmExit = new Command("Exit", Command.EXIT, 1);

    // Create Form, add components, listen for events
    fmMain = new Form("");
    fmMain.append(cgSound);
    fmMain.addCommand(cmExit);
    fmMain.setCommandListener(this);   
    fmMain.setItemStateListener(this);
  }

  public void startApp()
  {
    display.setCurrent(fmMain);
  }

  public void pauseApp()
  { }
  public void destroyApp(boolean unconditional)
  { }

  public void commandAction(Command c, Displayable s)
  {
    if (c == cmExit)
    {
      destroyApp(false);
      notifyDestroyed();
    } 
  }
  public void itemStateChanged(Item item)              
  {
    switch (cgSound.getSelectedIndex())
    {
      case 0: 
        AlertType.INFO.playSound(display);
        break;

      case 1:
        AlertType.CONFIRMATION.playSound(display);
        break;

      case 2:
        AlertType.WARNING.playSound(display);
        break;

      case 3:
        AlertType.ALARM.playSound(display);
        break;

      case 4:
        AlertType.ERROR.playSound(display);
        break;
    }
  }
}

(出處:http://www.survivalescaperooms.com)



發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大冶市| 军事| 阳春市| 商丘市| 镇雄县| 子长县| 越西县| 额敏县| 远安县| 广宗县| 新源县| 中卫市| 电白县| 老河口市| 榕江县| 仲巴县| 永平县| 内江市| 若尔盖县| 肇庆市| 昌平区| 龙陵县| 香河县| 佛坪县| 乌海市| 榆中县| 乳源| 井陉县| 公主岭市| 青铜峡市| 额敏县| 和平区| 岑巩县| 铁岭市| 承德市| 临武县| 三原县| 海兴县| 达尔| 合作市| 五大连池市|