In my java application i have this code
@Override
public void onAttachedToWindow()
{
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DI
I've solved this issue putting
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
in onCreate before calling super.
protected void onCreate(Bundle savedInstanceState) {
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
super.onCreate(savedInstanceState);
}
Saludos desde Medellín