2

I've just developed my first Google Glass app (Android Studio) and I was hoping you all might help me work through a problem. I initially developed the app for Android and made the necessary modifications to be able to target Glass (a few updates to the manifest and a few new xml files). The app installs and runs just fine on Glass, with the exception of one quirk: the app icon and title are overlaying the top ~20% of the Glass display, like a title-bar banner.

Is there something that needs to be added/subtracted from a typical android development environment to disable this overlay?

Sorry I don't have a screenshot. I can try to figure out how to capture one on Glass if it helps.

m.s.
  • 16,063
  • 7
  • 53
  • 88
EricC
  • 21
  • 1
  • What kind of `Activity` are you using ? It seems that you're using an Activity that already contains ActionBar/Toolbar. – Simon Marquis Jun 04 '15 at 13:24

1 Answers1

0

I got to the bottom of if. Remove app title bar android

I failed to put the android:theme="@android:style/Theme.NoTitleBar" declaration in the correct place in the manifest.

Thank you.

Community
  • 1
  • 1
EricC
  • 21
  • 1