How to create an EditText (optional), what would it be on the whole screen and with such lines?
Example:
PS When using the code in the answer Likhanov'a turns out like this: 
The code is slightly modified:
<?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.x.myfirstnormal.ActivityAdd" android:background="#D6E100"> <EditText android:id="@+id/editText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="16dp" android:layout_marginTop="2dp" android:ems="10" android:hint="Name" android:inputType="textPersonName" android:backgroundTint="@android:color/black" android:textColor="@android:color/black" android:textColorHint="@android:color/black" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView" /> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="32dp" android:layout_marginTop="52dp" android:text="Name*" android:textColor="@android:color/black" android:textSize="20sp" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/button6" android:layout_width="120dp" android:layout_height="50dp" android:layout_marginBottom="552dp" android:layout_marginLeft="168dp" android:backgroundTint="@android:color/holo_green_light" android:text="OK" android:textColor="@android:color/background_light" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" /> <Button android:id="@+id/button7" android:layout_width="120dp" android:layout_height="52dp" android:layout_marginBottom="552dp" android:backgroundTint="@android:color/holo_red_light" android:text="Clear all" android:textColor="@android:color/background_light" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintHorizontal_bias="1.0" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" /> <EditText android:id="@+id/editText6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="16dp" android:ems="10" android:hint="Female" android:inputType="textPersonName" android:backgroundTint="@android:color/black" android:textColor="@android:color/black" android:textColorHint="@android:color/black" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toBottomOf="@+id/female" /> <TextView android:id="@+id/female" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="32dp" android:text="Female*" android:textColor="@android:color/black" android:textSize="20sp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/editText" android:layout_marginLeft="32dp" /> <!--<ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content" tools:layout_editor_absoluteX="147dp" tools:layout_editor_absoluteY="228dp"> --> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="240dp" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent"> <com.example.x.myfirstnormal.LinedEditText android:id="@+id/mainEditText" android:layout_width="match_parent" android:layout_height="match_parent" android:inputType="textMultiLine" android:ems="10" android:textColor="@color/Black" /> </LinearLayout> <!--</ScrollView>--> </android.support.constraint.ConstraintLayout> 
