mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 01:36:55 +00:00
Cancel splash runnable
This commit is contained in:
parent
667b7666df
commit
1396b2799a
1 changed files with 14 additions and 6 deletions
|
@ -125,15 +125,23 @@ public class ActivityMain extends ActivityBase implements FragmentManager.OnBack
|
|||
long start = new Date().getTime();
|
||||
Log.i("Main boot");
|
||||
|
||||
final Runnable splash = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
getWindow().setBackgroundDrawableResource(R.drawable.splash);
|
||||
}
|
||||
};
|
||||
|
||||
final SimpleTask<Boolean> boot = new SimpleTask<Boolean>() {
|
||||
@Override
|
||||
protected void onPreExecute(Bundle args) {
|
||||
getMainHandler().postDelayed(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
getWindow().setBackgroundDrawableResource(R.drawable.splash);
|
||||
}
|
||||
}, SPLASH_DELAY);
|
||||
getMainHandler().postDelayed(splash, SPLASH_DELAY);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostExecute(Bundle args) {
|
||||
getMainHandler().removeCallbacks(splash);
|
||||
getWindow().setBackgroundDrawable(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue