Prompt the name of the desired root element to create a screen with the ability to scroll.

I explain: it is necessary to place a large amount of text on the screen and therefore it should be possible to scroll the text. I’ll say right away that the ListView will not work, as this is a list, and I will need to place a lot of coherent text and pictures on one screen.
I tried RelativeLayout , but the text is not displayed correctly, without paragraphs.

Tell me which root element to choose or is it possible to indicate something in the properties of the screen?

    3 answers 3

    ScrollView is a GroupView descendant that supports scrolling content. You can also use WebView, having previously prepared (or generated) content in HTML format.

      HorizontalScrollView or VerticalScrollView, depends on the direction of scrolling.

        As a beginner I will give an answer understandable to a beginner.

          <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/SCROLLER_ID" android:layout_width="fill_parent" android:layout_height="wrap_content" android:fillViewport="true" android:scrollbars="vertical"> <EditText android:id="@+id/editText" style="@android:style/Widget.DeviceDefault.EditText" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="16dp" /> </ScrollView>