Je veux faire mon champ de texte d'édition sans la ligne en bas, comme dans cette image En ce moment, mon texte édité ressemble à ceci Comment puis-je le faire?
<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
Essayez ci-dessous le code: -
Android:background="@null"
ou
Android:background="@Android:color/transparent"
au-dessus du code, transparent votre fond edittext.
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"
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.