1. 问题叙述性说明:

(请注意以下几点大胆)。

ScrollView作为顶层view时报错,直接导致apk崩溃。具体错误信息例如以下:

12-21 09:12:15.150: D/AndroidRuntime(7726): Shutting down VM

12-21 09:12:15.150: W/dalvikvm(7726): threadid=1: thread exiting with uncaught exception (group=0x416402a0)

12-21 09:12:15.160: E/AndroidRuntime(7726): FATAL EXCEPTION: main

12-21 09:12:15.160: E/AndroidRuntime(7726): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.project.fish.app/com.my.act.activity.my.MyFA}: java.lang.IllegalStateException: ScrollView can host only one direct child

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2110)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2135)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread.access$700(ActivityThread.java:140)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1237)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.os.Handler.dispatchMessage(Handler.java:99)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.os.Looper.loop(Looper.java:137)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread.main(ActivityThread.java:4921)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at java.lang.reflect.Method.invokeNative(Native Method)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at java.lang.reflect.Method.invoke(Method.java:511)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at dalvik.system.NativeStart.main(Native Method)

12-21 09:12:15.160: E/AndroidRuntime(7726): Caused by: java.lang.IllegalStateException:
ScrollView can host only one direct child

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.widget.ScrollView.addView(ScrollView.java:316)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.view.LayoutInflater.rInflate(LayoutInflater.java:750)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.view.LayoutInflater.inflate(LayoutInflater.java:489)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.view.LayoutInflater.inflate(LayoutInflater.java:396)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.view.LayoutInflater.inflate(LayoutInflater.java:352)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:307)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.Activity.setContentView(Activity.java:1924)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.my.act.InitTitlebar(MyFA.java:113)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.ui.activity.base.BaseFA.onCreate(BaseFA.java:29)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at com.fish.ui.activity.my.MyFA.onCreate(MyFA.java:169)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.Activity.performCreate(Activity.java:5206)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)

12-21 09:12:15.160: E/AndroidRuntime(7726):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2074)

12-21 09:12:15.160: E/AndroidRuntime(7726):  ... 11 more

2. 分析:

从错误信息ScrollView can host only one direct child

可见,是xml的错误。以下列出错误的xml文件:

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

>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="@color/WhiteColor"

    android:scrollbars="vertical" >

<!-- =================1. image ========================= -->

<LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="fill_parent"

            android:orientation="horizontal"

            android:paddingTop="15dip" >

<ImageView

                android:id="@+id/imageView_pic"

                android:layout_width="fill_parent"

                android:layout_height="wrap_content"

                android:contentDescription="text"

                android:scaleType="fitCenter"

                android:src="@drawable/empty_photo" />

        </LinearLayout>

<!-- ========================= 2. detail ================= -->

<LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="32dp"

            android:layout_marginTop="10dp"

            android:orientation="vertical" >

<TextView

                android:id="@+id/text_prompt"

                android:layout_width="wrap_content"

                android:layout_height="fill_parent"

                android:layout_marginLeft="5dp"

                android:gravity="center"

                android:text="@string/text_detail"

                android:textSize="15dip" />

        </LinearLayout>

       

        <!-- ========================= 3. line ================= -->

       

        <LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="32dp"

            android:layout_marginTop="4dp"

            android:orientation="vertical" >

<TextView

                android:layout_width="fill_parent"

                android:layout_height="2dp"

                android:background="@color/lightgray" />

        </LinearLayout>

</ScrollView>

,这个ScrollView中包括3个LinerLayout。

3. 解决:

从错误信息,我们就知道,须要scrollview不能有多个child,所以,我在3个layout外,又加了一个layout。使3个layou成为这个新加的layout的子view,问题解决。

以下是正确的xml定义:

<?

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

>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="@color/WhiteColor"

    android:scrollbars="vertical" >

<LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:orientation="vertical"

        android:paddingTop="15dip" >

<!-- =================1. image ========================= -->

<LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="fill_parent"

            android:orientation="horizontal"

            android:paddingTop="15dip" >

<ImageView

                android:id="@+id/imageView_pic"

                android:layout_width="fill_parent"

                android:layout_height="wrap_content"

                android:contentDescription="text"

                android:scaleType="fitCenter"

                android:src="@drawable/empty_photo" />

        </LinearLayout>

<!-- ========================= 2. detail ================= -->

<LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="32dp"

            android:layout_marginTop="10dp"

            android:orientation="vertical" >

<TextView

                android:id="@+id/text_prompt"

                android:layout_width="wrap_content"

                android:layout_height="fill_parent"

                android:layout_marginLeft="5dp"

                android:gravity="center"

                android:text="@string/text_detail"

                android:textSize="15dip" />

        </LinearLayout>

       

        <!-- ========================= 3. line ================= -->

       

        <LinearLayout

            android:layout_width="fill_parent"

            android:layout_height="32dp"

            android:layout_marginTop="4dp"

            android:orientation="vertical" >

<TextView

                android:layout_width="fill_parent"

                android:layout_height="2dp"

                android:background="@color/lightgray" />

        </LinearLayout>

</LinearLayout>

</ScrollView>

版权声明:本文博客原创文章,博客,未经同意,不得转载。

&quot;ScrollView can host only one direct child&quot;问题解决了的更多相关文章

  1. ScrollView can host only one direct child

    Android 采用ScrollView布局时出现异常:ScrollView can host only one direct child. 异常原因: 主要是ScrollView内部只能有一个子元素 ...

  2. [Android] ScrollView can host only one direct child

    android 采用ScrollView布局时出现异常:ScrollView can host only one direct child.主要是ScrollView内部只能有一个子元素,即不能并列两 ...

  3. ScrollView不能包含多个子项,ScrollView can host only one direct child

    http://debuglog.iteye.com/blog/1441828 ScrollView不能包含多个子项,ScrollView can host only one direct child ...

  4. android 异常:ScrollView can host only one direct child

    android 采用ScrollView布局时出现异常:ScrollView can host only one direct child. 主要是ScrollView内部只能有一个子元素,即不能并列 ...

  5. ScrollView:ScrollView can host only one direct child异常

    java.lang.IllegalStateException: ScrollView can host only one direct child 原因是在外面有一个TextView控件,将其删除则 ...

  6. ScrollView can host only one direct child 解决

    主要是ScrollView内部只能有一个子元素,即不能并列两个子元素,所以需要把所有的子元素放到一个LinearLayout内部或RelativeLayout等其他布局方式让后再在这个layout外部 ...

  7. CocoaPods 遇到 A host target is a "parent" target which embeds a "child" target 问题解决

    正在开发的项目中,集成RN,在使用cocoapods 时候,pod install 遇到如下问题: [!] Unable to find host target(s) for ****Extensio ...

  8. qos-server can not bind localhost:22222, dubbo version: 2.6.0, current host: 127.0.0.1【问题解决】

    好吧,这个问题比较low,但是记录一下,以免后期遗忘. 说白了,这个问题就是端口被占用了. 问题: qos-server can not bind localhost:22222, dubbo ver ...

  9. Java - 错误: &quot;java.lang.ArrayIndexOutOfBoundsException: length=1; index=1&quot;

    错误: "java.lang.ArrayIndexOutOfBoundsException: length=1; index=1" 本文地址: http://blog.csdn.n ...

随机推荐

  1. UVA 10911 Forming Quiz Teams(dp + 集合最优配对问题)

    4th IIUC Inter-University Programming Contest, 2005 G Forming Quiz Teams Input: standard input Outpu ...

  2. VS2010(2012)中使用Unit Testing进行单元测试

    原文 VS2010(2012)中使用Unit Testing进行单元测试 使用VS 2012自带的Unit Testing工具进行单元测试是非常方便的.网上关于这方面的例子很多,这篇随笔只起个人学习笔 ...

  3. Android使用ksoap2-android调用WebService学习

    之前主要做客户端UI交互,很少处理数据和接触服务端,但现在的移动设备根本不可能离得开网络连接,数据的交换.最近学习的是在android端如何去调用远程WebService,都说WebService是一 ...

  4. REPLACE...IN.....WITH.... 的使用

    REPLACE...IN.....WITH....   的使用,例子用于改变alv的gt_fieldcat_alv LOOP AT gt_fieldcat_alv ASSIGNING <fs_f ...

  5. Lucene.Net 2.3.1开发介绍——附录一、如何下载Lucene.Net的各种版本

    原文:Lucene.Net 2.3.1开发介绍--附录一.如何下载Lucene.Net的各种版本 首先,你需要一个svn客户端.TortoiseSVN非常好用,可以从官方网站下载.下载地址:http: ...

  6. WAS ND集群中的HTTP内存会话复制对Java应用程序序列化编程的要求

    应用程序需要遵守的约定 在会话中没有自定义对象时,WAS 集群的 HTTP 会话内存复制特性成功地实现了高可用性,使用户在宕机过程中的会话信息没有丢失,操作没有受到任何影响. 在会话中包含自定义对象时 ...

  7. 《深入理解mybatis原理》 MyBatis事务管理机制

    MyBatis作为Java语言的数据库框架,对数据库的事务管理是其很重要的一个方面.本文将讲述MyBatis的事务管理的实现机制. 首先介绍MyBatis的事务Transaction的接口设计以及其不 ...

  8. UVa 11233 - Deli Deli

    题目:求所给单词的负数形式. 分析:模拟. 直接按章题意分情况求解就可以. 说明:按语法也能够(⊙_⊙). #include <iostream> #include <cstdlib ...

  9. Python之常用模块(待更新)

    模块,用一砣代码实现了某个功能的代码集合. 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合.而对于一个复杂的功能来,可能需要多个函数才 ...

  10. 300M无线路由器 TL-WR842N - TP-LINK官方网站

    300M无线路由器 TL-WR842N - TP-LINK官方网站 300M无线路由器TL-WR842N 11N无线技术.300Mbps无线速率 2x2MIMO架构.CCA技术,提升无线稳定性.扩大无 ...