Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I configure Dialog layout so that the Dialog is displayed as translucent (with color and alpha channel set to some 50% so that the overlayed view is visible through the Dialog). I create a custom Dialog and set the contentView to be simple TextView only. Thanks

share|improve this question

3 Answers

Put the Background color as #CC000000 i will be translucent.

share|improve this answer

Well, somehow, this is what you might find usefull:

final Dialog d = new Dialog(this,android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
share|improve this answer

You can use setFeatureDrawableAlpha() See http://developer.android.com/reference/android/view/Window.html#setFeatureDrawableAlpha(int, int)

share|improve this answer
What to put for featureId parameter in order to have entire content of dialog translucent? – cubesoft Oct 11 '11 at 11:06
setFeatureDrawableAlpha() seems not to be working no matter what parameter I provide as featureId. – cubesoft Oct 11 '11 at 14:41

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.