Remove fullscreen android:theme where it hides the menu

Many of the Android samples rely on an options menu to work properly
but, at least on newer devices, the menu is permanently hidden by the
Android theme "Theme.NoTitleBar.Fullscreen", which means that most
of the examples were dysfunctional.
This commit is contained in:
Otto Seiskari
2019-03-17 17:32:43 +02:00
parent 26087e28ad
commit 3a1ccd5f43
14 changed files with 14 additions and 28 deletions
@@ -6,8 +6,7 @@
<application
android:label="@string/app_name"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
android:icon="@drawable/icon">
<activity android:name="Tutorial2Activity"
android:label="@string/app_name"
@@ -5,8 +5,7 @@
<application
android:label="@string/app_name"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
android:icon="@drawable/icon">
<activity android:name="Tutorial2Activity"
android:label="@string/app_name"