utils.java
来自「一个手机小说查看系统,可以进行小说的下载、查阅等操作。」· Java 代码 · 共 12 行
JAVA
12 行
import javax.microedition.lcdui.Font;
public class Utils
{
public static final Font fontold = Font.getDefaultFont();
public static final Font fontsps = Font.getFont(Font.FACE_SYSTEM,Font.STYLE_PLAIN,Font.SIZE_SMALL);
public static final Font fontspm = Font.getFont(Font.FACE_SYSTEM,Font.STYLE_PLAIN,Font.SIZE_MEDIUM);
public static final Font fontspl = Font.getFont(Font.FACE_SYSTEM,Font.STYLE_PLAIN,Font.SIZE_LARGE);
public static final int fontoldh = fontold.getHeight();
public static final int fontspsh = fontsps.getHeight();
public static final int fontspmh = fontspm.getHeight();
public static final int fontsplh = fontspl.getHeight();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?