I'm trying to center two views vertically on a third view.
<ImageView
android:id="@+id/vh_buisnesspost_buisness_preview"
android:layout_width="100dp"
android:layout_height="100dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_margin="16dp"
android:background="@drawable/background_circle_preview_border"/>
<TextView
android:id="@+id/vh_buisnesspost_buisness_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Buisness Name"
android:textStyle="bold"
android:textColor="@color/colorBlackFont"
app:layout_constraintStart_toEndOf="@+id/vh_buisnesspost_buisness_preview"
app:layout_constraintTop_toTopOf="@+id/vh_buisnesspost_buisness_preview"
app:layout_constraintBottom_toTopOf="@+id/vh_buisnesspost_date_posted"
android:layout_marginStart="16dp"/>
<TextView
android:id="@+id/vh_buisnesspost_date_posted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:text="2 mins ago"
app:layout_constraintStart_toEndOf="@+id/vh_buisnesspost_buisness_preview"
app:layout_constraintBottom_toBottomOf="@+id/vh_buisnesspost_buisness_preview"
app:layout_constraintTop_toBottomOf="@+id/vh_buisnesspost_buisness_name"
android:layout_marginStart="16dp"/>
<TextView
android:id="@+id/vh_buisnesspost_post_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:text=" \u2022 Restaurant"
app:layout_constraintStart_toEndOf="@+id/vh_buisnesspost_date_posted"
app:layout_constraintBottom_toBottomOf="@+id/vh_buisnesspost_buisness_preview"
app:layout_constraintTop_toBottomOf="@+id/vh_buisnesspost_buisness_name"/>
However when I do this, it leaves an unwanted space between the two views.
What can I do to center these two views, to the third view?

