Если ScrollView поддерживает только одного прямого дочернего элемента, как я Я должен был сделать всю раскладку прокручиваемой?

У меня есть 3 текстовых представления в макете, где текст немного закреплен внизу на моем дроиде 2 ... Как я могу убедиться, что все текст доступен для просмотра, и пользователь может прокрутить вниз (просто пальцем), чтобы увидеть остальную часть моего текста?

Спасибо!

РЕДАКТИРОВАТЬ:

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ImageButton android:id="@+id/ImageButton01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/def" 
    android:layout_gravity="top|center">
    </ImageButton>

<TextView android:id="@+id/oneView" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="@string/one_def" 
android:layout_gravity="left|center" 
android:textSize="13dip"></TextView>

<TextView android:text="@string/two_def" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="left|center" 
android:id="@+id/twoView" 
android:textSize="13dip"></TextView>

<TextView android:text="@string/threedef_def" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="left|center" 
android:id="@+id/threeView" 
android:textSize="13dip"></TextView>


</LinearLayout>
13
задан Filipp W. 13 November 2017 в 15:35
поделиться