当前位置: 代码迷 >> Android >> Android下怎么计算要显示的字符串所占的宽度和高度
  详细解决方案

Android下怎么计算要显示的字符串所占的宽度和高度

热度:40   发布时间:2016-04-28 00:31:17.0
Android下如何计算要显示的字符串所占的宽度和高度
查询了google发现在android一下有几种方法可以做到,但是经过实际测试发现下面这种方法是最准确的
Rect bounds = new Rect();String text = "Hello World";TextPaint paint;paint = findViewById(R.id.hello_world).getPaint();paint.getTextBounds(text, 0, text.length(), bounds);int width = bounds.width();


Paint pFont = new Paint();Rect rect = new Rect();pFont.getTextBounds("豆", 0, 1, rect);Log.v(TAG, "height:"+rect.height()+"width:"+rect.width());
  相关解决方案