Skip to content

Commit

Permalink
change review dialog's theme
Browse files Browse the repository at this point in the history
  • Loading branch information
hugohuang1111 committed Jul 27, 2016
1 parent 622f57e commit 2ffda09
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/proj.android/AndroidManifest.xml
Expand Up @@ -18,7 +18,7 @@
<activity android:name="org.cocos2dx.cpp.AppActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:theme="@style/AppTheme"
android:configChanges="orientation|keyboardHidden|screenSize">

<intent-filter>
Expand Down
9 changes: 9 additions & 0 deletions cpp/proj.android/res/values/styles.xml
@@ -0,0 +1,9 @@
<resources>

<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
</style>

</resources>

0 comments on commit 2ffda09

Please sign in to comment.