-
hiding the title bar
I've found this implementation to hide the title bar:
requestWindowFeature(Window.FEATURE_NO_TITLE);
But how is this done in the XML layout files? I thought I saw it previously somewhere, but I can't seem to find it now.
More importantly, if this is able to be set in the XML file, where can I find the documentation that refers to this?
Thanks
-
-
It is done in the AndroidManifest file. Below is a sample from our PlaysVideo app.
[highlight="xml"]
<activity android:name=".VPlay"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:screenOrientation="landscape">
<intent-filter>
....
</intent-filter>
</activity>[/highlight]
-
-
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules