A few ImageViews have been already created in xml eg:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/blue_dot1"
android:src="@drawable/checkers_blue1"
android:layout_alignBottom="@+id/y1"
android:layout_alignLeft="@+id/x1"
android:layout_alignStart="@+id/x1"/>
Is it possible to update the xml later on programatically in Java for the alignbottom, left and start variables (so that the blue_dot1 image can be moved along the x/y grid of images)
For example I am going to make a method which has a X and Y arg to allow movement in a simple grid, its just the xml part i cant figure out.