#【概要】
LinearLayoutやFrameLayoutのようにConstraintLayoutもScrollViewの一番最初の子として追加することは可能です。
<?xml version="1.0" encoding="utf-8"?>
<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:context="arara.com.testcodestyle.MainActivity">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="長い文字列..."
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
</ScrollView>
しかし、通常はこれでスクローリングできるのですが、作っているアプリでAndroidの設定からフォントサイズを変更した場合に、Constraint内のViewが重なり合ったような状態で表示されてしまう現象に遭遇しました。
#【解決方法】
https://stackoverflow.com/a/48299530
ようは、上記で言うところの、TextView
のapp:layout_constraintBottom_toBottomOf
がparent
だと駄目だというもの。
今回は、これを使ってmarginをセットしていたので、app:layout_constraintBottom_toBottomOf
を削除して、ConstraintLayout
に対してpaddingをセットすることで対応しました。
ただ、上記のXMLではそもそも現象が再現しないので、「ScrollView内のConstraintLayoutに対してconstraintBottomでconstraintをつけた場合」というだけではなく、どうも再現には色々な条件があるようです・・・。