Skip to content

Commit e0cee0b

Browse files
author
agustin b
committed
added no title bar by default
1 parent e62ca58 commit e0cee0b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/processing/mode/android/Manifest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ private void writeBlankManifest(final File file) {
178178
// activity/android:name should be the full name (package + class name) of
179179
// the actual activity class. or the package can be replaced by a single
180180
// dot as a prefix as an easier shorthand.
181-
writer.println(" <activity android:name=\"\">");
181+
writer.println(" <activity android:name=\"\"");
182+
writer.println(" android:theme=\"@android:style/Theme.NoTitleBar\">");
182183

183184
writer.println(" <intent-filter>");
184185
writer.println(" <action android:name=\"android.intent.action.MAIN\" />");
@@ -303,4 +304,4 @@ protected void save(File file) {
303304
private File getManifestFile() {
304305
return new File(sketch.getFolder(), MANIFEST_XML);
305306
}
306-
}
307+
}

0 commit comments

Comments
 (0)