Given the following xml:
<ImageView
android:id="@+id/someTag"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginBottom="12dp"
android:layout_marginStart="8dp"
android:tag="someTag"
app:layout_constraintBottom_toTopOf="@+id/someID"
app:layout_constraintStart_toEndOf="@+id/someID"
I would like to know how to get the id of
app:layout_constraintBottom_toTopOf
(namely "someID") programatically.
Many thanks!