获取字符串长度、宽度

        Paint p = new Paint();
        p.setAntiAlias(true);
        p.setColor(Color.WHITE);
        p.setTextSize(mTextSize); 

p.getTextBounds(str, 0, 1, rect); 


int bw = rect.width();

int bh = rect.height();


你可能感兴趣的:(获取字符串长度、宽度)