我开发了一个简单的教程应用程序。因为我想添加一些代码,所以如何在应用程序中显示。我尝试使用文本视图进行显示。 在这里:
<string name="code"> Resources res = getResources();
BufferedReader input = new BufferedReader(new InputStreamReader(
res.openRawResource(R.raw.get_accounts)));
StringBuffer sb = new StringBuffer();
try {
String line;
while ((line = input.readLine()) != null) {
sb.append(line)
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}</string>
TextView txtCode = (TextView) findViewById(R.id.error_message);
txtCode.setText(R.string.code);
但它不是一种格式化的编码方式,所以请建议我在android中显示代码视图的任何特殊方法。