在xml中创建透明背景

时间:2018-02-05 05:57:40

标签: android camera

我有android扫描程序项目,它完全对我有用。我要求和搜索很多,但这不是我想要的东西。我想做的是让我的布局背景像这样透明

https://i.stack.imgur.com/jFovP.png

他们建议我使用:

android:background="@android:color/transparent"

但是发生的事情只是让我的背景为白色(#ffff),你可以在这张照片中看到https://i.stack.imgur.com/gCkoi.jpg我的背景是蓝色的,但我想要做的是上面的第一张照片。

提前感谢您的回答。

1 个答案:

答案 0 :(得分:0)

如果您的xml布局背景是透明的,那么仍然不足以使活动背景透明。您需要将这些添加到您的样式:

<style name="Transparent" parent = "Theme.AppCompat.Light.NoActionBar">
   ...
   
  <item name = "android:windowIsTranslucent"> true </item> 
  <item name = "android:windowBackground"> @color / transparent </item>
   ...

</style>