Compare commits

...

3 Commits
v6 ... master

Author SHA1 Message Date
b265e45d2b 更新 'plugin.xml' 2023-05-24 19:54:59 +08:00
zher52
c3ec85e858 调整虚拟按键颜色为黑色 2020-05-07 20:28:14 +08:00
zher52
7edd841078 处理虚拟按键背景问题 2020-04-30 20:25:38 +08:00
2 changed files with 5 additions and 4 deletions

View File

@ -45,9 +45,6 @@
<param name="onload" value="true"/>
</feature>
</config-file>
<edit-config file="AndroidManifest.xml" target="/manifest/application/activity[@android:name='MainActivity']" mode="merge">
<activity android:theme="@style/Theme.AppStart" android:windowSoftInputMode="adjustResize"/>
</edit-config>
<source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" />
<resource-file src="src/android/res/values/style.xml"
target="res/values/style.xml" />

View File

@ -27,6 +27,7 @@ import android.content.res.Configuration;
import android.content.res.ColorStateList;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Build;
import android.os.Handler;
import android.view.Display;
import android.view.Gravity;
@ -219,7 +220,10 @@ public class SplashScreen extends CordovaPlugin {
private void removeSplashScreen(final boolean forceHideImmediately) {
cordova.getActivity().runOnUiThread(new Runnable() {
public void run() {
if (splashDialog != null && splashImageView != null && splashDialog.isShowing()) {//check for non-null splashImageView, see https://issues.apache.org/jira/browse/CB-12277
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
cordova.getActivity().getWindow().setNavigationBarColor(Color.parseColor("#000000"));
}
if (splashDialog != null && splashImageView != null && splashDialog.isShowing()) {//check for non-null splashImageView, see https://issues.apache.org/jira/browse/CB-12277
final int fadeSplashScreenDuration = getFadeDuration();
// CB-10692 If the plugin is being paused/destroyed, skip the fading and hide it immediately
if (fadeSplashScreenDuration > 0 && forceHideImmediately == false) {