Написать абзац с помощью textview на Android

Я хочу написать абзац как часть моего мобильного приложения. Как мне это сделать?

2 ответов


используйте \n для разрыва строки.

пример:

TextView t = findViewById(R.id.text);
t.setText("This is the first line\nThis is the second line\nThird line...");

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="text_with_paragraphs">
        Can this contain a lot of text? Can it contain \n a newline? Yes, it can.
        Adding a 2nd line like this should work.
        It should not cause parsing errors.
    </string>
<resources>

таким образом, вы можете сделать ссылку на него, как:

android:text="@string/text_with_paragraphs"

ссылка: http://www.experts-exchange.com/Programming/Smartphones/Android/Q_27925834.html