-1

Androidのテキストビューにコンテンツを設定したい。

お気に入り...

"

コンピューターとは何ですか?コンピュータはプログラム可能な機械です。コンピュータの主な特徴は次の 2 つです。

  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 に答える