К сожалению, нам не хватает всего 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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Something Important to align"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
Теперь, если вы создадите именно этот макет, TextView будет в центре.Это поведение ConstraintLayout по умолчанию, оно всегда пытается центрировать в нем представления, если вы устанавливаете ограничения таким образом.На это поведение могут влиять свойства app:layout_constraintHorizontal_bias
и app:layout_constraintVertical_bias
TextView.Значения по умолчанию для обоих 0,5, что вы можете перевести на 50%.Если вы установите их обоих на 0, вы увидите TextView в в верхнем левом углу .Если вы установите их обоих на 1, TextView окажется в в правом нижнем углу .Вы поняли, что таким образом вы можете расположить свой TextView или любой View в любом месте.
Свойства bias также описаны в официальной документации здесь .
Полностью рабочий пример TextView, выровненный по центру по вертикали и выровненный по горизонтали вправо:
<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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Something Important to align"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.5" />
</android.support.constraint.ConstraintLayout>