The big keyguard transition refactor (1.1/n)

Make sure to dismiss FALLBACK_HOME after we are fully unlocked, or
else AM will be waiting for the actual home to be visible before
unlocking.

Change-Id: I2f47ba1ff8f07e871be0d7187714aae5b81e9334
This commit is contained in:
Jorim Jaggi
2016-10-23 14:55:26 -07:00
parent d7359a8385
commit a3b50cc1ba

View File

@@ -77,7 +77,7 @@ public class FallbackHome extends Activity {
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION); | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
} }
registerReceiver(mReceiver, new IntentFilter(Intent.ACTION_USER_UNLOCKED)); registerReceiver(mReceiver, new IntentFilter(Intent.ACTION_USER_PRESENT));
maybeFinish(); maybeFinish();
} }