论坛首页 移动开发技术论坛

j2me中Canvas长字符串显示自动换行

浏览 3583 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-10-16  
Canvas中屏幕适配是比较头疼的事情,我们必须使用程序来动态的根据屏幕大小来判断以及处理适配问题,下面介绍了长字符串显示时候自动换行的实现。
  首先是把字符串每一行进行分割,存放到Vector中。
/**
	 * 按字节数把字符串分组,支持中文
	 */
	public static Vector splitStr(Font f, String str, int length) {
		if (str == null)
			return null;
		Vector result = new Vector();
		char[] tempChar = str.toCharArray();
		int lengthPX = 0;
		StringBuffer sb = new StringBuffer();
		for (int i = 0; i < tempChar.length; i++) {
			lengthPX += f.charWidth(tempChar[i]);
			if (lengthPX > length || tempChar[i] == '\n') {
				result.addElement(sb.toString());
				sb = new StringBuffer();
				lengthPX = f.charWidth(tempChar[i]);
				if (tempChar[i] != '\n') {
					sb.append(tempChar[i]);
				}
			} else {
				sb.append(tempChar[i]);
			}
		}
		if (sb.length() > 0)
			result.addElement(sb.toString());
		return result;
	}

然后可以遍历这个Vector,调用g.drawString来显示字符串。需要在y坐标上累计字体的高度。
论坛首页 移动开发技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics