I'm using this code to disable keyboard to disable home button . I'm using this in activity where I want the keyguard to be disabled ,so is it necessary that keyguard should be called from service ? If not why keyguard is not getting disabled ?
KeyguardManager km = (KeyguardManager)getSystemService(Context.KEYGUARD_SERVICE);
km.inKeyguardRestrictedInputMode();
this.key = km.newKeyguardLock("IN");
key.disableKeyguard();
String s = String.valueOf(km.isKeyguardLocked());
Log.d("keyguardvalue",s);
Please call for activity onResume or onCreate: