Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォント ハンドル (またはフォント名 + フォント サイズ + フォント スタイル データ) を指定して、テキスト文字列の幅を知る必要があります。
Windowsでは、GetTextExtentPoint()を使用していました
このコードを使用してください
Rect bounds = new Rect(); Paint textPaint = textView.getPaint(); textPaint.getTextBounds(text, 0, text.length(), bounds); int height = bounds.height(); int width = bounds.width();