0

Для планшета с использованием относительной компоновки я использовал прокрутку, но она не работает. Что мне здесь не хватает?Вид прокрутки не работает должным образом с использованием относительной компоновки

Источник:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:paddingLeft="@dimen/activity_horizontal_margin" 
     android:paddingRight="@dimen/activity_horizontal_margin" 
     android:paddingTop="@dimen/activity_vertical_margin" 
     android:paddingBottom="@dimen/activity_vertical_margin" 
     tools:context=".MainActivity"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/imageView1" 
      android:src="@drawable/logo" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentStart="true" /> 
     // More Buttons, images and text views here.... 
    </RelativeLayout> 
</ScrollView> 
+0

Основываясь на вашем фрагменте кода здесь я могу вам сказать, до сих пор, что ScrollView должен иметь только один непосредственный дочерний элемент. – kabuto178

+0

Я думаю то же самое, но это форматирование, которое, кажется, имеет более одного –

+0

Что не работает? У вас достаточно данных для создания прокрутки? –

ответ

0

попробовать сделать свою высоту RelativeLayout "wrap_content" вместо матча родителя.

0

Оба атрибута layout_height вашего RelativeLayout и ScrollView должны быть wrap_content и not match_parent.

обновленный код:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:paddingLeft="@dimen/activity_horizontal_margin" 
     android:paddingRight="@dimen/activity_horizontal_margin" 
     android:paddingTop="@dimen/activity_vertical_margin" 
     android:paddingBottom="@dimen/activity_vertical_margin" 
     tools:context=".MainActivity"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/imageView1" 
      android:src="@drawable/logo" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentStart="true" /> 

     <!-- More Buttons, images and text views here.... --> 
</RelativeLayout>