-1

我想在 android 文本视图上设置一些内容。

像...

"

电脑是什么?计算机是可编程的机器。计算机的两个主要特征是:

  1. 它以明确定义的方式响应一组特定的指令。
  2. 它可以执行预先录制的指令列表(程序)。

"

任何人都可以帮助我

坦克

4

1 回答 1

0

试试这个:

 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)."));
于 2012-06-25T17:37:59.260 回答