I want to have a transparent background for Android EditText widget. How is that possible?
You can also do it programitically like this:
TypedValue value= new TypedValue(); getApplicationContext().getTheme().resolveAttribute(android.R.attr.selectableItemBackground, value, true); myButton.setBackgroundResource(value.resourceId);