📄 test.java
字号:
/*
* Test.java
*
* Created on 2006年3月21日, 下午6:44
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.j2medev.chapter3;
import java.io.IOException;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Image;
/**
*
* @author ming
*/
public class Test extends Form{
Image img = null;
public Test() {
super("test image");
try{
img = Image.createImage("/city.png");
}catch(IOException ex){
}
append(img);
append(ImageUtil.rotateImage(img,ImageUtil.ROTATE_MIRROR));
// append(ImageUtil.rotateImage(img,ImageUtil.ROTATE_180));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -