* commit '5305fe3f0971274d90d875cfbeffdb18e3b03f09': Don't set up external displays from binder thread
This commit is contained in:
@@ -617,7 +617,14 @@ public class KeyguardViewMediator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyguardUpdateMonitor.getInstance(mContext).dispatchScreenTurndOff(why);
|
KeyguardUpdateMonitor.getInstance(mContext).dispatchScreenTurndOff(why);
|
||||||
mKeyguardDisplayManager.show();
|
|
||||||
|
// This needs to run on the UI thread
|
||||||
|
mHandler.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
mKeyguardDisplayManager.show();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void doKeyguardLaterLocked() {
|
private void doKeyguardLaterLocked() {
|
||||||
|
|||||||
Reference in New Issue
Block a user