1
Good night.
I have a content.xml where I have 3 imageView, I would like to know which command I can use to connect these 3 images by means of arrows as if it were a flowchart.
The app starts with the 3 blank ones and when the user selects a device in the Drawer navigation, the content image changes (this part I got) and this image should connect with the next one (imageView1 connects with imageView2 that connects with imageView3 and so on).
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" />