如果internet关闭,则获取错误java.lang.IllegalStateException:ScrollView只能承载一个直接子级

如果internet关闭,则获取错误java.lang.IllegalStateException:ScrollView只能承载一个直接子级,java,android,xml,android-studio,exception,Java,Android,Xml,Android Studio,Exception,我使用的是单一布局的NestedScrollView,但当互联网关闭时,如果互联网正常运行,它们会给我如下错误 Process: com.oktested, PID: 8028 java.lang.IllegalStateException: ScrollView can host only one direct child at androidx.core.widget.NestedScrollView.addView(NestedScrollView.

我使用的是单一布局的NestedScrollView,但当互联网关闭时,如果互联网正常运行,它们会给我如下错误

Process: com.oktested, PID: 8028
        java.lang.IllegalStateException: ScrollView can host only one direct child
            at androidx.core.widget.NestedScrollView.addView(NestedScrollView.java:444)
            at com.google.android.material.snackbar.BaseTransientBottomBar.showView(BaseTransientBottomBar.java:511)
            at com.google.android.material.snackbar.BaseTransientBottomBar$1.handleMessage(BaseTransientBottomBar.java:191)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:176)
            at android.app.ActivityThread.main(ActivityThread.java:6662)
            at java.lang.reflect.Method.invoke(Native Method)
            at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:547)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:873)
XML代码:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/color_black">

        <androidx.core.widget.NestedScrollView
            android:id="@+id/nsvFaces"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/_10sdp"
                    android:layout_marginTop="@dimen/_70sdp"
                    android:fontFamily="@font/roboto_regular"
                    android:text="@string/browsebyfaces"
                    android:textColor="@color/colorAccent"
                    android:textSize="@dimen/_24sdp"
                    android:layout_marginRight="@dimen/_10sdp"
                    android:textStyle="bold" />

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/rvFaces"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/_10sdp"
                    android:layout_marginTop="@dimen/_5sdp"
                    android:layout_marginRight="@dimen/_10sdp"
                    android:layout_marginBottom="@dimen/_10sdp"
                    android:nestedScrollingEnabled="false" />

            </LinearLayout>

        </androidx.core.widget.NestedScrollView>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="@dimen/_70sdp"
                android:alpha="1"
                android:background="@drawable/bg_gradient_home" />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <ImageView
                    android:id="@+id/btnBack"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_centerVertical="true"
                    android:padding="@dimen/_10sdp"
                    android:src="@drawable/ic_vector_arrow" />

                <RelativeLayout
                    android:id="@+id/sideMenu"
                    android:layout_width="@dimen/_50sdp"
                    android:layout_height="@dimen/_50sdp"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:padding="@dimen/_12sdp">

                    <ImageView
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:src="@drawable/ic_menu_sky" />

                </RelativeLayout>

            </RelativeLayout>

        </RelativeLayout>

    </RelativeLayout>




如果我错了,请建议我,请帮助我

位于com.google.android.material.snackbar.BaseTransientBottomBar.showView(BaseTransientBottomBar.java:511)

您的堆栈跟踪告诉我您试图向ScrollView添加一个Snackbar

Snackbar试图找到一个父视图,可以在其中添加视图。您可能在ScrollView中调用了
Snackbar.make()
函数,因此它尝试在那里添加Snackbar。 如果您将RelativeLayout作为父函数传递给
make
函数,它有望工作

位于com.google.android.material.snackbar.BaseTransientBottomBar.showView(BaseTransientBottomBar.java:511)

您的堆栈跟踪告诉我您试图向ScrollView添加一个Snackbar

Snackbar试图找到一个父视图,可以在其中添加视图。您可能在ScrollView中调用了
Snackbar.make()
函数,因此它尝试在那里添加Snackbar。
如果您将RelativeLayout作为父级传递给
make
函数,它有望工作。

是否向scrollview添加布局程序?否,我仅在xml中添加布局您是否向scrollview添加布局程序?否,我仅在xml中添加布局程序