Récemment, avec Android Studio 2.2, il y a un nouveau ConstraintLayout qui facilite la conception, mais contrairement à RelativeLayout
et Linearlayout
, je ne peux pas utiliser un ScrollView
pour entourer ConstraintLayot
. Est-ce possible? Si c'est le cas, comment?
c'est à dire
<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"
, l'application affiche un écran vide, mais si j'utilise layout_height="match_parent"
, l'application ne défile pas.