が、それは簡単なガイドラインを使用して(代わりのアンカーポイントとしてビューを使用して行うことができます希望、場所にであなたのビューを配置するために、次のレイアウトに従うことができます):
XMLの例:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.constraint.Guideline
android:id="@+id/mid_guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5"
/>
<View
android:layout_width="50dp"
android:layout_height="50dp"
android:background="#F00"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toTopOf="@+id/mid_guideline"
/>
</android.support.constraint.ConstraintLayout>
すてきなトリック。ありがとう – roostaamir