如何将WebView放在其他视图下方,并将所有视图滚动在一起



我正在开发一个Android应用程序,在其他视图下有一个WebView。

整个内容不符合屏幕,因此我想启用一些滚动。

我的布局文件看起来像这样:

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    tools:layout_editor_absoluteX="8dp"
    tools:layout_editor_absoluteY="8dp">
    <TextView .../>
    <TextView .../>
    <TextView .../>
    <TextView .../>
    <WebView
        android:id="@+id/about_detail"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:textSize="14sp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/contactInformation"
        tools:layout_constraintLeft_creator="1"
        tools:layout_constraintRight_creator="1"
        tools:layout_constraintTop_creator="1" />
</android.support.constraint.ConstraintLayout>

我应该在约束layout上使用滚动浏览量,还是该怎么做?

您可以尝试以下代码:

<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <TextView .../>
        <TextView .../>
        <TextView .../>
        <TextView .../>
        <WebView
            android:id="@+id/about_detail"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="24dp"
            android:textSize="14sp" />
    </LinearLayout>
</android.support.v4.widget.NestedScrollView>

相关内容

最新更新