I want to have a transparent background for Android EditText widget. How is that possible?
Very simple:
android:alpha="0.5"
set this in layout will work
android:background="@color/transparent
and add this in colors.xml
<color name="transparent">#00000000</color>
android:background="@android:color/transparent"
Try this
android:background="@null"
EditText, like any other view/component can be customized in the xml file. You just need to include below attribute in the EditText attributes.
android:background="@null"