Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 38 down vote accepted

Try this

android:background="@null"
share|improve this answer
i want to do this in layout file. it is possible? – Dhawal Sodha Feb 27 at 10:43
android:background="@android:color/transparent"
share|improve this answer
i want to do this in layout file. it is possible? – Dhawal Sodha Feb 27 at 10:44

You can also set it using java code

myTextView.setBackgroundColor(Color.TRANSPARENT);
share|improve this answer

Use translucent theme

<activity android:theme="@android:style/Theme.Translucent">
share|improve this answer
Check more here developer.android.com/guide/topics/ui/themes.html – yogsma Apr 19 '11 at 6:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.