Kaopiz / KProgressHUD

An implement of ProgressHUD for Android, similar to MBProgressHUD, SVProgressHUD for iOS.
Apache License 2.0
1.64k stars 381 forks source link

Why showing HUD hides keyboard? #43

Closed a-v-ebrahimi closed 5 years ago

a-v-ebrahimi commented 6 years ago

I use code below to show progress :

hud=KProgressHUD.create(context)
                .setStyle(KProgressHUD.Style.SPIN_INDETERMINATE)
                .setAnimationSpeed(2)
                .setDimAmount(Constants.HUD_DIM_AMOUNT)
                .setMaxProgress(100);
hud.show();

Why this hides device keyboard? I want keyboard to be visible.

Thanks

tuanna-hsp commented 5 years ago

The hud is basically a customized Dialog, so that's the default behaviour. Looking into configuring the dialog soft input mode might be some help but I don't know for sure though.