简体   繁体   中英

assigning large string to textview.settext hangs UI

I'm trying to show very large text (of length 850879) in textview, unfortunately when I assign text to textview, UI hangs for 8-15 seconds! How do we fix this issue? any idea?

Use Webview....instead of textview. Textview is not design to load large text.

WebView webView;
String html;
webView.loadDataWithBaseURL("", html, "text/html", "UTF-8", "");

你能把文本分成小块并将它提供给列表视图......那样的ui就不会因为什么不可见而被阻止

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM