Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
b265e45d2b | |||
![]() |
c3ec85e858 | ||
![]() |
7edd841078 |
@ -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" />
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user