そのため、最近、Android Studio 2.2では、設計を大幅に容易にする新しいConstraintLayoutが導入されましたが、RelativeLayout
およびと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"
、アプリはスクロールしません。