I'm trying to make a menu with buttons, and my problem is that i want this menu to be over a camera view (I'm working on Augmented Reality). But if I make my menu appear it makes the background black instead of having the video of my camera.

Any ideas how to make this background transparent? I tried with :

menu.setBackgroundColor(Color.TRANSPARENT);

but there is no modification :/...

link|improve this question

1  
have u declared the colour in your style.xml file ? – iDroid Explorer Aug 22 '11 at 10:03
Actually i'm making the menu pragmatically, so no i didn't declare it. – D4r7h Aug 22 '11 at 10:08
OK. Then you can change the background of the menu as any transperent image. Or you can change the theme in Manifest file to black so that can shows the white background in your Application. – iDroid Explorer Aug 22 '11 at 10:11
Thanks, I didn't thought about a transparent image. – D4r7h Aug 22 '11 at 10:19
1  
If you like my answer then please upvote me. Thanks. – iDroid Explorer Aug 22 '11 at 10:56
show 5 more comments
feedback

2 Answers

up vote 1 down vote accepted

OK. Then you can change the background of the menu as any transperent image. Or you can change the theme in Manifest file to black so that can shows the white background in your Application

link|improve this answer
feedback

Try: menu.setBackgroundColor(Color.alpha(0));

link|improve this answer
how is this different from the menu.setBackgroundColor(Color.TRANSPARENT); mentioned in the question? – dldnh Apr 3 at 14:37
feedback

Your Answer

 
or
required, but never shown

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