Given a View, is it possible to get the resource ID of the currently-applied theme? I don't mean to the whole activity (though it would inherit from that theme if there's no specific view applied to it), I mean, if I have:
<Button
...
style="@style/SomeTheme" />
Then I want to be able to get the resource ID for R.style.SomeTheme
Not sure what you need to get the resource ID for, but I was able to get this output:
(might be useful to check one style against another gotten in the same manner)
From this :
I do not know how to get the return of something like "R.style.ThemeNameImLookingFor".
EDIT: Found one more option, again not the "R.style.ThemeIWant" but might be useful (found here and slightly modified: https://stackoverflow.com/a/26302184/14111809)
Which returns (on same two buttons above):