web-dev-qa-db-fra.com

EditText sans ligne en bas

Je veux faire mon champ de texte d'édition sans la ligne en bas, comme dans cette image enter image description here En ce moment, mon texte édité ressemble à ceci enter image description hereComment puis-je le faire?

11
<EditText
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:background="@null"/>

Vous pouvez le faire en définissant l'arrière-plan sur null

43
Ye Min Htut

Essayez ci-dessous le code: -

Android:background="@null"

ou

Android:background="@Android:color/transparent"

au-dessus du code, transparent votre fond edittext.

6
duggu

Vous pouvez obtenir transparent background of EditText en utilisant 

 Android:background="#00000000" 

ou 

 Android:background="@null"

ou 

Vous pouvez créer custom drawable.xml, créer simplement le drawable transparent et utiliser

Android:background="@drawable/customdrawable"
3
Subhalaxmi Nayak

Vous pouvez définir l’EditText pour qu’il soit possible de dessiner un transparent transparent ou simplement d’utiliser 

Android:background="@Android:color/transparent".

Ça marche.

0
Keshav Gera