Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android EditText Transparent Background

I want to have a transparent background for Android EditText widget. How is that possible?

like image 879
Sultan Saadat Avatar asked Apr 19 '11 06:04

Sultan Saadat


People also ask

How do I make drawable transparent on Android?

image); image. setAlpha(150); // Value: [0-255]. Where 0 is fully transparent // and 255 is fully opaque. Set the value according // to your choice, and you can also use seekbar to // maintain the transparency.


1 Answers

Try this

android:background="@null" 
like image 172
Dmitry Ryadnenko Avatar answered Oct 13 '22 05:10

Dmitry Ryadnenko