我的滚动视图存在一些问题。我在下面给出的代码
<?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>
活动开始时应用程序崩溃,但当我删除滚动视图时,应用程序正在顺利运行。
任何帮助都会受到欢迎
答案 0 :(得分:5)
ScrollView
只能有一个孩子而且你有多个孩子。把孩子放在例如LinearLayout
内的ScrollView
,例如
ScrollView
LinearLayout
ImageViews