mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-26 20:33:07 +08:00
16 lines
264 B
Java
16 lines
264 B
Java
package com.phonegap;
|
|
|
|
public class SplashScreen {
|
|
private final DroidGap gap;
|
|
public SplashScreen(DroidGap gap) {
|
|
this.gap = gap;
|
|
}
|
|
public void hide() {
|
|
gap.runOnUiThread(new Runnable() {
|
|
public void run() {
|
|
gap.hideSplashScreen();
|
|
}
|
|
});
|
|
}
|
|
}
|