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
Post a Comment