带按钮的透明 LinearLayout (Android)
我正在尝试制作一个带有按钮的菜单,我的问题是我希望这个菜单位于相机视图上(我正在研究增强现实)。 但是,如果我显示菜单,它会使背景变黑,而不是显示相机的视频。
有什么想法如何使这个背景透明吗?我尝试过:
menu.setBackgroundColor(Color.TRANSPARENT);
但没有修改:/...
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 :/...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的。然后您可以将菜单的背景更改为任何透明图像。或者您可以将清单文件中的主题更改为黑色,以便可以在应用程序中显示白色背景
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
尝试:
menu.setBackgroundColor(Color.alpha(0));
Try:
menu.setBackgroundColor(Color.alpha(0));