0
View
をView
の下に置きます(ConstraintLayout
)。基本的に私はこれを達成したい:ConstraintLayout内の別のビューの下にビューを配置する
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/view1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<View
android:id="@+id/view2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
VIEW1がZ軸でVIEW2の下にあります。
'app:layout_constraintTop_toBottomOf =" @ + id/view1 "を追加すると、ビューの上端と下端の間に制約が作成され、それらを上下に配置しません。これは私が達成しようとしていたものではありません – ben
あなたがそれらを上下に置いて言うと、view1がビュー2の上に垂直になることを意味しますか? @ben –
私はおそらくそれらが互いに重なり合っていて、コードをそれに応じて更新することを望んでいることがわかります。 –