我想在 android 文本视图上设置一些内容。
像...
"
电脑是什么?计算机是可编程的机器。计算机的两个主要特征是:
- 它以明确定义的方式响应一组特定的指令。
- 它可以执行预先录制的指令列表(程序)。
"
任何人都可以帮助我
坦克
我想在 android 文本视图上设置一些内容。
像...
"
电脑是什么?计算机是可编程的机器。计算机的两个主要特征是:
- 它以明确定义的方式响应一组特定的指令。
- 它可以执行预先录制的指令列表(程序)。
"
任何人都可以帮助我
坦克
试试这个:
TextView tv = (TextView)findViewById(R.id.txtvew);
tv.setText(Html.fromHtml("<p>What is a Computer? A computer is a programmable machine. The two principal characteristics of a computer are:</p>" +
"1. It responds to a specific set of instructions in a well-defined manner.<br/>" +
"2. It can execute a prerecorded list of instructions (a program)."));