2017-06-22 21 views
0

ViewViewの下に置きます(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の下にあります。

答えて

0

単にあなたが探している最適なレイアウトを実現するためにapp:layout_constraint...属性の多くを使用することができConstraintLayoutの直接の子に

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
xmlns:app="http://schemas.android.com/apk/res-auto"> 

    <TextView 
     android:id="@+id/view1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="VIEW 1"/> 

    <TextView 
     android:id="@+id/view2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="VIEW 2" 
     app:layout_constraintTop_toTopOf="@+id/view1" 
     app:layout_constraintStart_toStartOf="@+id/view1" 
     app:layout_constraintEnd_toEndOf="@+id/view1" 
     app:layout_constraintBottom_toBottomOf="@+id/view1"/> 
</android.support.constraint.ConstraintLayout> 

を試してみてください。

これらのうちのすべて4つのlayout_constraintは必ずしも必要ではありません。しかし、ちょうどあなたのオプションを表示する。

+1

'app:layout_constraintTop_toBottomOf =" @ + id/view1 "を追加すると、ビューの上端と下端の間に制約が作成され、それらを上下に配置しません。これは私が達成しようとしていたものではありません – ben

+0

あなたがそれらを上下に置いて言うと、view1がビュー2の上に垂直になることを意味しますか? @ben –

+0

私はおそらくそれらが互いに重なり合っていて、コードをそれに応じて更新することを望んでいることがわかります。 –

関連する問題