I can't understand why there is no line under one of Plain Text fields, i have this line in android studio, but when i launch my application on my phone it dissapears. i have tried to copy xml attributes from another plain text view, but it didn't help
-
<TableLayout android:id="@+id/tableLayout" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginTop="16dp" android:layout_marginEnd="16dp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/registration_text_view"> <TableRow android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/textView3" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginEnd="8dp" android:layout_weight="1" android:text="@string/nickname_def_text" android:textAlignment="center" android:textSize="18sp" /> <EditText android:id="@+id/nickname_edit_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:autofillHints="" android:ems="10" android:inputType="textEmailAddress" android:textColor="#3A433D" /> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/textView5" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginEnd="8dp" android:layout_weight="1" android:text="@string/email_def_text" android:textAlignment="center" android:textSize="18sp" /> <EditText android:id="@+id/email_edit_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:autofillHints="" android:ems="10" android:inputType="textEmailAddress" android:textColor="#3A433D" /> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/textView2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginEnd="8dp" android:layout_weight="1" android:text="@string/password_def_text" android:textAlignment="center" android:textSize="18sp" /> <EditText android:id="@+id/password_edit_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:autofillHints="" android:ems="10" android:inputType="textPassword" android:textColor="#3A433D" /> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/register_btn" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="16dp" android:layout_weight="1" android:text="@string/register_btn" android:textColor="#3A433D" /> </TableRow> </TableLayout>