在Android中加载大文本

在Android中加载大文本,第1张

在Android中加载大文本

您可以使用代码来实现。因为如果在字符串中设置这些整行,XML将无法工作,因为您需要编辑每行。我的建议是

<TextView android:id="@+id/mylargeText"/>

在你的主要班级

    TextView largeText = (TextView)findViewById(R.id.mylargeText);

在res中创建原始文件夹。然后创建名为term.txt的文件

try {      Resources res = getResources(); InputStream in_s = res.openRawResource(R.raw.term);     byte[] b = new byte[in_s.available()];     in_s.read(b);     largeText.setText(new String(b)); } catch (Exception e) {     largeText.setText("Error: can't show terms."); }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5439551.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存