How to connect Images via arrows in androidStudio

Good Night.

I have a content.xml where I have 3 imageView, I would like to know what command I can use to connect these 3 images by means of arrows as if it were a flowchart.

The application starts with the 3 blank and when the user selects a device in the navigation drawer, the content image changes (this part I managed) and this image should connect with the next one (imageView1 connects with imageView2 which connects with imageView3 and so on onward).

Xml:

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="153dp"
    android:layout_height="106dp"
    app:srcCompat="@drawable/branco"
    tools:layout_editor_absoluteX="0dp"
    tools:layout_editor_absoluteY="1dp" />

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="138dp"
    android:layout_height="108dp"
    app:srcCompat="@drawable/branco"
    tools:layout_editor_absoluteX="212dp"
    tools:layout_editor_absoluteY="0dp" />

<ImageView
    android:id="@+id/imageView3"
    android:layout_width="127dp"
    android:layout_height="108dp"
    app:srcCompat="@drawable/branco"
    tools:layout_editor_absoluteX="400dp"
    tools:layout_editor_absoluteY="1dp" />

Author: Rafael N. De Pietro, 2019-03-02