为段落设置的Android TextView文本内容

时间:2012-06-25 17:31:57

标签: android

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

...一样

  

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

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

任何人都可以帮助我

坦克

1 个答案:

答案 0 :(得分: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)."));