我想在textview中写一个不同的行

时间:2016-06-15 13:11:38

标签: android textview line

我的观点是我只能写/选择我想要的textview的第一行:

我的名字是:

12345

甚至可以写入第二行或更多行吗?

2 个答案:

答案 0 :(得分:1)

我的名字是:\ n12345

更多行使用更多\ n \ n \ n \ n \ n: - )

答案 1 :(得分:0)

您还可以执行许多操作....使用一个文本视图粗体斜体或显示在列表中。

以HTML格式撰写文字。即

String youttext="<b>My Name is Avi</b><br><br> <i>I m a Android Developer</i><br><br><ul><li>I m a Blogger too</li></ul>"

Textview yourview=(Textview) findViewById(R.id.textview);
        yourview.setText(Html.fromHtml(youttext));

您也可以以HTML格式显示文字。如果要更改特定颜色文本和样式或阴影等。