我的ScrollView有问题

时间:2014-03-30 08:27:19

标签: android

我的滚动视图存在一些问题。我在下面给出的代码

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/bg">
       <ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/fabm"
        /> 
        <ImageView 
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ac"
         />  
        <ImageView 
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/mbm"
         />
        <ImageView 
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/sk"
         />
        <ImageView 
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/dcm"
         />
        <ImageView 
     android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/eks"
        />
</ScrollView>

活动开始时应用程序崩溃,但当我删除滚动视图时,应用程序正在顺利运行。

任何帮助都会受到欢迎

1 个答案:

答案 0 :(得分:5)

ScrollView只能有一个孩子而且你有多个孩子。把孩子放在例如LinearLayout内的ScrollView,例如

ScrollView
  LinearLayout
    ImageViews