我正在开发一个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,或者我该怎么做?
答案 0 :(得分:2)
您可以尝试以下代码:
<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>