Android DrawText 字符串的绘制

标签: Android SDK

[1].[代码] TextUtil.java 跳至 [1] [2] [3]

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.Aina.Android;
 
import java.util.Vector;
 
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.FontMetrics;
import android.view.KeyEvent;
 
public class TextUtil {
 
     private int mTextPosx = 0 ; // x坐标
     private int mTextPosy = 0 ; // y坐标
     private int mTextWidth = 0 ; // 绘制宽度
     private int mTextHeight = 0 ; // 绘制高度
     private int mFontHeight = 0 ; // 绘制字体高度
     private int mPageLineNum = 0 ; // 每一页显示的行数
     private int mCanvasBGColor = 0 ; // 背景颜色
     private int mFontColor = 0 ; // 字体颜色
     private int mAlpha = 0 ; // Alpha值
     private int mRealLine = 0 ; // 字符串真实的行数
     private int mCurrentLine = 0 ; // 当前行
     private int mTextSize = 0 ; // 字体大小
     private String mStrText = "" ;
     private Vector mString = null ;
     private Paint mPaint = null ;
 
     public TextUtil(String StrText, int x, int y, int w, int h, int bgcolor,
             int textcolor, int alpha, int textsize) {
         mPaint = new Paint();
         mString = new Vector();
         this .mStrText = StrText;
         this .mTextPosx = x;
         this .mTextPosy = y;
         this .mTextWidth = w;
         this .mTextHeight = h;
         this .mCanvasBGColor = bgcolor;
         this .mFontColor = textcolor;
         this .mAlpha = alpha;
         this .mTextSize = textsize;
     }
 
     public void InitText() {
         mString.clear(); // 清空Vector
         // 对画笔属性的设置
//      mPaint.setARGB(this.mAlpha, Color.red(this.mFontColor), Color
//              .green(this.mFontColor), Color.blue(this.mFontColor));
         mPaint.setTextSize( this .mTextSize);
         mPaint.setColor(Color.BLUE);
         this .GetTextIfon();
     }
 
     /**
      * 得到字符串信息包括行数,页数等信息
      */
     public void GetTextIfon() {
         char ch;
         int w = 0 ;
         int istart = 0 ;
         FontMetrics fm = mPaint.getFontMetrics(); // 得到系统默认字体属性
         mFontHeight = ( int ) (Math.ceil(fm.descent - fm.top) + 2 ); // 获得字体高度
         mPageLineNum = mTextHeight / mFontHeight; // 获得行数
         int count = this .mStrText.length();
         for ( int i = 0 ; i < count; i++) {
             ch = this .mStrText.charAt(i);
             float [] widths = new float [ 1 ];
             String str = String.valueOf(ch);
             mPaint.getTextWidths(str, widths);
             if (ch == '\n' ) {
                 mRealLine++; // 真实的行数加一
                 mString.addElement( this .mStrText.substring(istart, i));
                 istart = i + 1 ;
                 w = 0 ;
             } else {
                 w += ( int ) Math.ceil(widths[ 0 ]);
                 if (w > this .mTextWidth) {
                     mRealLine++; // 真实的行数加一
                     mString.addElement( this .mStrText.substring(istart, i));
                     istart = i;
                     i--;
                     w = 0 ;
                 } else {
                     if (i == count - 1 ) {
                         mRealLine++; // 真实的行数加一
                         mString.addElement( this .mStrText.substring(istart,
                                 count));
                     }
                 }
             }
         }
     }
 
     /**
      * 绘制字符串
      *
      * @param canvas
      */
     public void DrawText(Canvas canvas) {
         for ( int i = this .mCurrentLine, j = 0 ; i < this .mRealLine; i++, j++) {
             if (j > this .mPageLineNum) {
                 break ;
             }
             canvas.drawText((String) (mString.elementAt(i)), this .mTextPosx,
                     this .mTextPosy + this .mFontHeight * j, mPaint);
         }
     }
     /**
      * 翻页等按键处理
      * @param keyCode
      * @param event
      * @return
      */
     public boolean KeyDown( int keyCode, KeyEvent event)
     {
         if (keyCode == KeyEvent.KEYCODE_DPAD_UP)
         {
             if ( this .mCurrentLine > 0 )
             {
                 this .mCurrentLine--;
             }
         }
         else if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN)
         {
             if (( this .mCurrentLine + this .mPageLineNum) < ( this .mRealLine - 1 ))
             {
                 this .mCurrentLine++;
             }
         }
         return false ;
     }
}

[2].[代码] MyView.java 跳至 [1] [2] [3]

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.Aina.Android;
 
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.view.KeyEvent;
import android.view.View;
 
public class MyView extends View implements Runnable{
 
     private Paint mPaint;
     private int mICount = 0 ;
     private TextUtil mTextUtil;
 
     public MyView(Context context) {
         super (context);
         mPaint = new Paint();
         String string = "测试自动换行(第1行)\n\n测试自动换行(第2行)\n测试自动换行(第3行)\n测试自动换行(第4行)\n测试自动换行(第5行)\n测试自动换行(第6行)\n测试自动换行(第7行)" ;
         mTextUtil = new TextUtil(string, 15 , 150 , 300 , 80 , 0x000000 , 0xff00ff ,
                 255 , 16 );
         mTextUtil.InitText();
         new Thread( this ).start();
     }
 
     @Override
     protected void onDraw(Canvas canvas) {
         super .onDraw(canvas);
         canvas.drawColor(Color.BLACK);
         mPaint.setAntiAlias( true );
         if (mICount < 100 ) {
             mICount++;
         }
         mPaint.setColor(Color.RED);
         canvas.drawText( "装在进度:" + mICount + "%......" , 10 , 20 , mPaint);
         mTextUtil.DrawText(canvas);
     }
 
     @Override
     public void run() {
         Thread.currentThread();
         while (!Thread.interrupted()){
             try {
                 Thread.sleep( 10 );
             } catch (Exception ex){
                 ex.printStackTrace();
                 Thread.currentThread().interrupt();
             }
             this .postInvalidate();
         }
     }
     public boolean onKeyDown( int keyCode, KeyEvent event) {
         
         return mTextUtil.KeyDown(keyCode, event);
     }
}

[3].[代码] Test_DrawText.java 跳至 [1] [2] [3]

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.Aina.Android;
 
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
 
public class Test_DrawText extends Activity {
     /** Called when the activity is first created. */
     private MyView mv ;
     @Override
     public void onCreate(Bundle savedInstanceState) {
         super .onCreate(savedInstanceState);
         mv = new MyView( this );
         setContentView(mv);
     }
 
     @Override
     public boolean onKeyDown( int keyCode, KeyEvent event) {
         mv.onKeyDown(keyCode, event);
         return super .onKeyDown(keyCode, event);
     }
     
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值