如何将 Webview 放在其他视图下方并将所有视图滚动到一起
How can I put a Webview below other views and scroll all views together
我正在那里开发一个 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>
我应该在我的 ConstraintLayout 周围使用 Scrollview,或者我该怎么做?
您可以试试下面的代码:
<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>
我正在那里开发一个 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>
我应该在我的 ConstraintLayout 周围使用 Scrollview,或者我该怎么做?
您可以试试下面的代码:
<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>