⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkcolor.java

📁 《Java ME手机应用开发大全》源码 書籍內容簡介: http://www.china-pub.com/410
💻 JAVA
字号:
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class CheckColor extends MIDlet implements CommandListener
{
  private Display display;
  private Form form; 
  private TextBox textbox;
  private Command exit; 
  public CheckColor()
  {
    display = Display.getDisplay(this);
    exit = new Command("退出", Command.SCREEN, 1);
    String message=null;
    if (display.isColor())
    {
      message="彩色显示屏幕";
    }
    else
    {
     message="黑白显示屏幕";
    }
    textbox = new TextBox("检验屏幕是否是彩色显示屏幕", message, 17, 0);
    textbox.addCommand(exit);
    textbox.setCommandListener(this);
  }
  public void startApp()
  {
   display.setCurrent(textbox);
  }
  public void pauseApp()
  {
  }
  public void destroyApp(boolean unconditional)
  {
  }
  public void commandAction(Command command, 
                            Displayable displayable)
  {
   if (command == exit)
   {
     destroyApp(true);
     notifyDestroyed();
   }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -