📄 graphicdraw.java
字号:
package util;
import javax.microedition.lcdui.Graphics;
/**
* Created by IntelliJ IDEA.
* User: robai
* Date: 2007-2-28
* Time: 12:28:19
* To change this template use File | Settings | File Templates.
*/
public class GraphicDraw {
public void drawLingRectangle(Graphics g,int x,int y,int w,int h)
{
g.setColor(0xffdddd);
g.drawLine(x,y,x+w,y);
g.drawLine(x,y,x,y+h);
g.drawLine(x+w,y,x+w,y+h);
g.drawLine(x,y+h,x+w,y+h);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -