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.
複数の行に折り返される長い文字列があり、その行数は使用されているAndroidデバイスのサイズによって異なります。テキストが何行に折り返されるかを知る方法はありますか?
次のいずれかのレイアウトクラスを使用できます。
Layout layout = new StaticLayout(text, /* other stuff--see docs */); int nLines = layout.getLineCount();