美文网首页Android开发学习
Android drawText获取text宽度的三种方式

Android drawText获取text宽度的三种方式

作者: 小小程序员jh | 来源:发表于2018-01-25 14:12 被阅读0次

    在做自定义view事,看了这个方法,查找资料了解下,看到这篇文章不错,记录下!
    http://blog.csdn.net/chuekup/article/details/7518239

    String str = "Hello";  
        canvas.drawText( str , x , y , paint);  
          
        //1. 粗略计算文字宽度  
        Log.d(TAG, "measureText=" + paint.measureText(str));  
          
        //2. 计算文字所在矩形,可以得到宽高  
        Rect rect = new Rect();  
        paint.getTextBounds(str, 0, str.length(), rect);  
        int w = rect.width();  
        int h = rect.height();  
        Log.d(TAG, "w=" +w+"  h="+h);  
          
        //3. 精确计算文字宽度  
        int textWidth = getTextWidth(paint, str);  
        Log.d(TAG, "textWidth=" + textWidth);  
          
            public static int getTextWidth(Paint paint, String str) {  
                int iRet = 0;  
                if (str != null && str.length() > 0) {  
                    int len = str.length();  
                    float[] widths = new float[len];  
                    paint.getTextWidths(str, widths);  
                    for (int j = 0; j < len; j++) {  
                        iRet += (int) Math.ceil(widths[j]);  
                    }  
                }  
                return iRet;  
            }  
    

    相关文章

      网友评论

        本文标题:Android drawText获取text宽度的三种方式

        本文链接:https://www.haomeiwen.com/subject/rojvaxtx.html