Libgdx android app remove fullscreen and show titlebar -


here link doubt have regarding app.any kind of solve appreciated. https://gamedev.stackexchange.com/q/103610/68334

alright, after checking through files, believe following configurations work case.

in styles.xml, declares gdxtheme.

<style name="gdxtheme" parent="android:theme">     <item name="android:windowbackground">@android:color/transparent</item>     <item name="android:colorbackgroundcachehint">@null</item>     <item name="android:windowanimationstyle">@android:style/animation</item>     <item name="android:windownotitle">true</item>     <item name="android:windowcontentoverlay">@null</item>     <item name="android:windowfullscreen">false</item> </style> 

in androidmanifest.xml, set application theme android:theme="@style/gdxtheme".

this need make status bar visible.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -