ConstraintLayout is new in android so anybody know what is tools:layout_constraintBaseline_creator="0"
and what purpose does it serve to the attributes. Below is my code.
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="144dp"
tools:layout_editor_absoluteY="39dp"
android:id="@+id/button2"
app:layout_constraintLeft_toRightOf="@+id/button"
android:layout_marginLeft="40dp"
android:layout_marginStart="40dp"
tools:layout_constraintLeft_creator="0"
app:layout_constraintBaseline_toBaselineOf="@+id/button"
tools:layout_constraintBaseline_creator="0" />