程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2ME >> JavaMe開發:繪制可自動換行文本

JavaMe開發:繪制可自動換行文本

編輯:J2ME

【問題描述】

JavaMe Graphics類中的drawString不支持文本換行,這樣繪制比較長的字符串時,文本被繪制在同一行,超過屏幕部分的字符串被截斷了。如何使繪制的文本能自動換行呢?

【分析】

drawString無法實現自動換行,但可以實現文本繪制的定位。因此可考慮,將文本拆分為多個子串,再對子串進行繪制。拆分的策略如下:

1 遇到換行符,進行拆分;

2 當字符串長度大於設定的長度(一般為屏幕的寬度),進行拆分。

【步驟】

1 定義一個String和String []對象;

  1. private String info;
  2. private String info_wrap[];

2 實現字符串自動換行拆分函數

StringDealMethod.Java

  1. package com.token.util;
  2. import Java.util.Vector;
  3. import Javax.microedition.lcdui.Font;
  4. public class StringDealMethod {
  5. public StringDealMethod()
  6. {
  7. }
  8. // 字符串切割,實現字符串自動換行
  9. public static String[] format(String text, int maxWidth, Font ft) {
  10. String[] result = null;
  11. Vector tempR = new Vector();
  12. int lines = 0;
  13. int len = text.length();
  14. int index0 = 0;
  15. int index1 = 0;
  16. boolean wrap;
  17. while (true) {
  18. int widthes = 0;
  19. wrap = false;
  20. for (index0 = index1; index1 < len; index1++) {
  21. if (text.charAt(index1) == '\n') {
  22. index1++;
  23. wrap = true;
  24. break;
  25. }
  26. widthes = ft.charWidth(text.charAt(index1)) + widthes;
  27. if (widthes > maxWidth) {
  28. break;
  29. }
  30. }
  31. lines++;
  32. if (wrap) {
  33. tempR.addElement(text.substring(index0, index1 - 1));
  34. } else {
  35. tempR.addElement(text.substring(index0, index1));
  36. }
  37. if (index1 >= len) {
  38. break;
  39. }
  40. }
  41. result = new String[lines];
  42. tempR.copyInto(result);
  43. return result;
  44. }
  45. public static String[] split(String original, String separator) {
  46. Vector nodes = new Vector();
  47. //System.out.println("split start...................");
  48. //Parse nodes into vector
  49. int index = original.indexOf(separator);
  50. while(index>=0) {
  51. nodes.addElement( original.substring(0, index) );
  52. original = original.substring(index+separator.length());
  53. index = original.indexOf(separator);
  54. }
  55. // Get the last node
  56. nodes.addElement( original );
  57. // Create splitted string array
  58. String[] result = new String[ nodes.size() ];
  59. if( nodes.size()>0 ) {
  60. for(int loop=0; loop<nodes.size(); loop++)
  61. {
  62. result[loop] = (String)nodes.elementAt(loop);
  63. //System.out.println(result[loop]);
  64. }
  65. }
  66. return result;
  67. }
  68. }

3 調用拆分函數,實現字符串的拆分

  1. int width = getWidth();
  2. Font ft = Font.getFont(Font.FACE_PROPORTIONAL,Font.STYLE_BOLD,Font.SIZE_LARGE);
  3. info = "歡迎使用!\n"
  4. +"1 MVC測試;\n"
  5. +"2 自動換行測試,繪制可自動識別換行的字符串。\n";
  6. info_wrap = StringDealMethod.format(info, width-10, ft);

4 繪制字符串

  1. graphics.setColor(Color.text);
  2. graphics.setFont(ft);
  3. for(int i=0; i<info_wrap.length; i++)
  4. {
  5. graphics.drawString(info_wrap[i], 5, i * ft.getHeight()+40, Graphics.TOP|Graphics.LEFT);
  6. }

繪制的效果如圖1所示:


圖1 自動換行字符串繪制效果

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved