是否可以在scrollView中使用包含不同大小/颜色文本的格式化文本文档?
我找到了一些允许我使用.txt文件的代码,但这是纯文本而且没有格式化。
TextView infoTxt = (TextView)findViewById(R.id.infoView);
infoTxt.setText(readTxt());
}
private String readTxt(){
InputStream inputStream = getResources().openRawResource(R.raw.info);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
int i;
try {
i = inputStream.read();
while (i != -1)
{
byteArrayOutputStream.write(i);
i = inputStream.read();
}
inputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return byteArrayOutputStream.toString();
}
非常感谢
利