ScrollView仅支持一个子项,报错ScrollView can host only one direct child

Android 2.3.3
Eclipse Version: 3.7.0
LogCat


LogCat  报错信息:

03-06 16:20:10.788: ERROR/AndroidRuntime(163): Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.widget.ScrollView.addView(ScrollView.java:229)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.view.LayoutInflater.rInflate(LayoutInflater.java:627)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.view.LayoutInflater.rInflate(LayoutInflater.java:626)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:207)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.app.Activity.setContentView(Activity.java:1657)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at com.taobao.htc.manage.CopyRight.onResume(CopyRight.java:50)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1150)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.app.Activity.performResume(Activity.java:3832)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2110)
03-06 16:20:10.788: ERROR/AndroidRuntime(163): ... 12 more


发生错误原因分析:

ScrollView仅支持一个子项。

查看对应的layout xml,发现ScrollView中有两个子项。

	<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
		android:layout_width="fill_parent" android:layout_height="wrap_content"
		android:scrollbars="vertical">
		<TextView android:id="@+id/textView2" android:layout_gravity="center"
			android:layout_width="fill_parent" android:layout_height="wrap_content"
			android:text="@string/text_CRdesc_title"></TextView>
		<TextView android:id="@+id/textView2" android:layout_gravity="center"
			android:layout_width="wrap_content" android:layout_height="wrap_content"
			android:text="@string/text_CRdesc"></TextView>
	</ScrollView>


解决办法:

在ScrollView 中设LinearLayout为子项 ,将其它View放入LinearLayout。

	<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
		android:layout_width="fill_parent" android:layout_height="wrap_content"
		android:scrollbars="vertical">
		<LinearLayout android:id="@+id/linearLayout1"
			android:layout_width="fill_parent" android:layout_height="wrap_content"
			android:orientation="vertical">
			<TextView android:id="@+id/textView2"
				android:layout_gravity="center" android:layout_width="fill_parent"
				android:layout_height="wrap_content" 
				android:text="@string/text_CRdesc_title"></TextView>
			<TextView android:id="@+id/textView2"
				android:layout_gravity="center" android:layout_width="wrap_content"
				android:layout_height="wrap_content" android:text="@string/text_CRdesc"></TextView>
		</LinearLayout>
	</ScrollView>


PS. 在Error Log中有错误提示。但在编辑layout xml 时未开启“Error Log”窗口,未发现报错。

其实“Graphical Layout” 中也会有报错提示

ScrollView can host only one direct child
Exception details are logged in Window > Show View > Error Log
  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值