my glass project is coming along great.
I am wondering if it is possible to change the background color of a view. I am using an immersion and my entire app runs on
The way I solved this issue is by setting the following line in my layout:
android:background="@color/black"
And then I created a file in the folder VALUES, called it colors.xml and put the color coding
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="black">#ff000000</color>
</resources>
I don't remember where I read this, but It did work for my immersion glassware.