Jak zmienić styl domyślnego EditText

Tworzę trzy teksty EditText w moim pliku xml, używając takiego kodu.

<EditText
            android:id="@+id/name_edit_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/profile_image_view_layout"
            android:layout_centerHorizontal="true"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginTop="20dp"
            android:ems="15"
            android:hint="@string/name_field"
            android:inputType="text" />

Po uruchomieniu aplikacji wygląda to tak na moim urządzeniu.

Ale chcę wyglądać jak bez użycia żadnego tła.

Jak to zrobić? Pomocny będzie każdy pomysł lub sugestia.

questionAnswers(4)

yourAnswerToTheQuestion