How to get color of any element?
For example, I have query c => c.Class("AppCompatButton")
to get button. app.Query(c => c.Class("AppCompatButton").Invoke("getBackground"))
always returns null;app.Query(c => c.Class("AppCompatButton").Invoke("getPaint")
returns many properties but what I need is not set: {"bgColor": 0}, {"color": -1}
etc.
Seems that I need to get some kind of color or background resource. Or maybe there is some Property with color similar to hint property - Property("hint", "Enter text") will find all elements with such hint.