所以最近,随着Android Studio 2.2的推出,新的ConstraintLayout使设计变得更加容易,但与RelativeLayout
and 不同的是Linearlayout
,我不能使用ScrollView
来环绕ConstraintLayot
。这可能吗?如果是这样,怎么办?
即
<ScrollView 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"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">
<android.support.constraint.ConstraintLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">
<!-- Have whatever children you want inside -->
</android.support.constraint.ConstraintLayout>
</ScrollView>
layout_height="wrap_content"
,则该应用程序显示空白屏幕,但是如果使用layout_height="match_parent"
,则该应用程序将不会滚动。