I use the following color
<color name="bg_color">#70236790</color>
As one can see it has the alpha value set.
If the color is applied to a layout which is using the Theme light, it is working. If I dont add the Theme value in the manifest, the color is getting very dark. I think the reason is that behind my relativeLayout is another view which is black (caused by the theme).
All other views in the layout I have set to
android:background="@android:color/transparent"
How can I make it work?