I'm trying to modify the appearance of cards created in a google glass application developed using the GDK. I've found the right place to modify the appearance - styles.xml. Here's the current code that gives me a glass-styled card:
<style name="CustomAppTheme" parent="@android:style/Theme.DeviceDefault">
</style>
Whenever I add anything in between those lines, though, the appearance of the cards never changes. But when I change the parent of the theme to one of the default Android themes, I can alter the appearance no problem (but the status bar is at the top, so I can't just use that instead of the glass theme). I really just want to center the text in my app - is there a way to do this? Am I looking at the wrong thing?