I can not change the location of elements on the markup. I do this: 
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.basicview.MainActivity"> xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <Button android:layout_height="wrap_content" android:layout_width="88dp" android:text="Красный" android:gravity="center" android:layout_alignParentTop="true" tools:layout_editor_absoluteY="0dp" tools:layout_editor_absoluteX="16dp" /> <Space android:layout_height="0dp" android:layout_width="368dp" android:layout_weight="1" tools:layout_editor_absoluteY="0dp" tools:layout_editor_absoluteX="8dp" /> <Button android:layout_height="wrap_content" android:layout_width="88dp" android:text="Зелёный" android:gravity="center" tools:layout_editor_absoluteY="0dp" tools:layout_editor_absoluteX="210dp" /> <Space android:layout_height="0dp" android:layout_width="368dp" android:layout_weight="1" tools:layout_editor_absoluteY="0dp" tools:layout_editor_absoluteX="8dp" /> <Button android:layout_height="wrap_content" android:layout_width="88dp" android:text="Синий" android:gravity="center" android:layout_alignParentBottom="true" tools:layout_editor_absoluteY="0dp" tools:layout_editor_absoluteX="111dp" /> </android.support.constraint.ConstraintLayout> That is, all the other buttons are hidden under the first. Can you please tell me what am I doing wrong?


