Commit 9e587cdb7ae223684e993f463727525ec142f6c3
1 parent
b609b4dd7e
Exists in
master
update AndroidManifest.xml config
Showing 1 changed file with 12 additions and 7 deletions Side-by-side Diff
doc/AndroidDocument.md
| ... | ... | @@ -76,14 +76,11 @@ Help==>About Eclips点击Android对应的图标就可以查看版本了. |
| 76 | 76 | |
| 77 | 77 | <activity |
| 78 | 78 | android:name="com.gumptech.sdk.ContainerActivity" |
| 79 | - android:theme="@style/container_dialog" | |
| 80 | - android:configChanges="orientation|screenLayout" > | |
| 79 | + android:configChanges="orientation|screenLayout" | |
| 80 | + android:windowSoftInputMode="stateAlwaysHidden|adjustPan" | |
| 81 | + android:theme="@style/Theme.TransparentWin" > | |
| 81 | 82 | </activity> |
| 82 | 83 | <activity |
| 83 | - android:name="com.facebook.LoginActivity" | |
| 84 | - android:theme="@android:style/Theme.Translucent.NoTitleBar" > | |
| 85 | - </activity> | |
| 86 | - <activity | |
| 87 | 84 | android:name="com.gumptech.sdk.PaymentActivity" |
| 88 | 85 | android:configChanges="orientation|screenLayout" |
| 89 | 86 | android:theme="@android:style/Theme.Translucent.NoTitleBar" > |
| ... | ... | @@ -91,15 +88,23 @@ Help==>About Eclips点击Android对应的图标就可以查看版本了. |
| 91 | 88 | <activity |
| 92 | 89 | android:name="com.gumptech.sdk.ExchangeWindow" |
| 93 | 90 | android:configChanges="orientation|screenLayout" |
| 94 | - android:theme="@style/ex_win" > | |
| 91 | + android:theme="@style/Theme.WinForExchange" > | |
| 95 | 92 | </activity> |
| 93 | + | |
| 96 | 94 | <service android:name="com.gumptech.sdk.PushService" > |
| 97 | 95 | </service> |
| 96 | + <!-- facebook --> | |
| 98 | 97 | <activity |
| 99 | 98 | android:name="com.facebook.FacebookActivity" |
| 100 | 99 | android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" |
| 101 | 100 | android:label="@string/app_name" |
| 102 | 101 | android:theme="@android:style/Theme.Translucent.NoTitleBar" /> |
| 102 | + <!-- vk --> | |
| 103 | + <activity android:name="com.vk.sdk.VKOpenAuthActivity" /> | |
| 104 | + <activity | |
| 105 | + android:name="com.vk.sdk.VKServiceActivity" | |
| 106 | + android:label="ServiceActivity" | |
| 107 | + android:theme="@style/VK.Transparent" /> | |
| 103 | 108 | |
| 104 | 109 | |
| 105 | 110 | #### 2、 向Gump平台索要游戏ID(GID),完成代码接入 |