そのため、ScrollView 内で ConstraintLayout を使用してこのレイアウトを開発しています。正常に動作しますが、今問題が発生しました。画面の外にレイアウトを拡張する必要があります。デザイン モードでスクロールすることはできますが、何も追加できません。制約は、現在追加しているオブジェクトではなく、以前のオブジェクトに対するものです。
ブループリント モードで制約を追加できますが、ブループリント モードで ScrollView をスクロールできないようです。これは可能ですか?Android Studio 2.2(リリース)とconstraint-layout:1.0.0-alpha8
デザインモードと同じようにしてみましたが、スクロールしません。何か案は?
ConstraintLayout を使用して通常にスクロールすると、制約が同じ場所に留まります。
編集:
に更新しましたalpha9
が、それでも解決しません
編集2:
beta1 も機能しません。AS 2.2.2。
編集3:
サンプル レイアウト:
<Button
android:text="Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/sampleButton"
/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="HardcodedText">
<android.support.constraint.ConstraintLayout
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- ETC constraints -->
</android.support.constraint.ConstraintLayout>
</ScrollView>