プログラミング勉強日記
2020年12月15日
Android StudioでConstraintLayoutの制約を設定するエラーが出たのでこのエラー内容と解決方法を示す。
ConstraintLayoutの制約エラー内容
This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add
the constraints
The layout editor allows you to place widgets anywhere on the canvas, and it records the current position with
designtime attributes (such as layout_editor_absoluteX). These attributes are not applied at runtime, so if you
push your layout on a device, the widgets may appear in a different location than shown in the editor. To fix this,
make sure a widget has both horizontal and vertical constraints by dragging from the edge connections. Issue id: MissingConstraints
ボタンやテキストなどのビューに対して水平方向や垂直方向の制約の定義をしないと左上の0.0の位置に配置されるエラーである。
解決方法
エラーを解決するためには、様々な方法があり、簡単にいくつか紹介する。
- ビューを画面に配置し、idとテキストを変更する
- 水平・垂直軸に制約する
- マージンとバイアスを設定する
- 制約の推論アイコンから自動で制約をする
- 制約を削除する
- 属性を手動で追加する
- ベースラインで位置揃えする
- バイアスでセンタリングする
- ガイドラインに制約する
私の場合は、垂直軸に制約することでエラーをなくすことができた。垂直軸と水平軸を制約するためには、ビューを選択して、位置揃えアイコンから設定する。
// 水平の場合
layout_constraintStart_toEndOf
layout_constraintStart_toStartOf
layout_constraintEnd_toStartOf
layout_constraintEnd_toEndOf
// 垂直の場合
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
変更前(activity_main.xml)
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World" />
変更後(activity_main.xml)
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
参考文献
[Android] ConstraintLayout による制約を設定するには
Android StudioでConstraintLayoutの制約を設定する方法を配置パターン別に解説