android中的Wordwrap问题

时间:2011-07-22 08:50:59

标签: android android-layout android-widget

我正在使用多行文字的textview。在某些地方textview有网页地址,如google.com yahoo.com等..现在因为多行,wordwrap功能在一行中分割谷歌。 com 另一方面,一行中的 yahoo。和其他行中的 com 也是如此。

有没有办法指定字符串中的某些单词不应该在android中分割?

-RR ..

1 个答案:

答案 0 :(得分:1)

您必须将字符串加载为Html内容。例如,认为这是你的String

Android is a software stack for mobile devices that includes an operating system, middleware and key applications. <a>http://www.google.co.in</a> The Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.

您必须将<a>标记放入不会影响wordwrap。

你必须加载你的字符串:textview.setText(Html.fromHtml(content_String));

希望它有所帮助。