Switch between screen locks programmatically












4















I would like to know if it is possible to switch between different screen locks (i.e. swipe lock and pattern lock) programmatically in Android.



I am working on an application based in security contexts. Depending on contexts defined by the user, different screen locks are activated in concordance with the actual context.



As I have seen, you can change between swipe lock and disabling screen lock using:



KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
lock.reenableKeyguard();
lock.disableKeyguard();


but it would be more secure if it was possible to change between a different screen lock rather than disabling it. Is it possible to change between different screen locks?










share|improve this question

























  • I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

    – Ryan S
    Jul 16 '13 at 0:25











  • I'll take a look. Thanks for your contribution.

    – lau.tlk
    Jul 16 '13 at 18:16











  • I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

    – Randy
    Sep 25 '13 at 4:54


















4















I would like to know if it is possible to switch between different screen locks (i.e. swipe lock and pattern lock) programmatically in Android.



I am working on an application based in security contexts. Depending on contexts defined by the user, different screen locks are activated in concordance with the actual context.



As I have seen, you can change between swipe lock and disabling screen lock using:



KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
lock.reenableKeyguard();
lock.disableKeyguard();


but it would be more secure if it was possible to change between a different screen lock rather than disabling it. Is it possible to change between different screen locks?










share|improve this question

























  • I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

    – Ryan S
    Jul 16 '13 at 0:25











  • I'll take a look. Thanks for your contribution.

    – lau.tlk
    Jul 16 '13 at 18:16











  • I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

    – Randy
    Sep 25 '13 at 4:54
















4












4








4


1






I would like to know if it is possible to switch between different screen locks (i.e. swipe lock and pattern lock) programmatically in Android.



I am working on an application based in security contexts. Depending on contexts defined by the user, different screen locks are activated in concordance with the actual context.



As I have seen, you can change between swipe lock and disabling screen lock using:



KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
lock.reenableKeyguard();
lock.disableKeyguard();


but it would be more secure if it was possible to change between a different screen lock rather than disabling it. Is it possible to change between different screen locks?










share|improve this question
















I would like to know if it is possible to switch between different screen locks (i.e. swipe lock and pattern lock) programmatically in Android.



I am working on an application based in security contexts. Depending on contexts defined by the user, different screen locks are activated in concordance with the actual context.



As I have seen, you can change between swipe lock and disabling screen lock using:



KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
lock.reenableKeyguard();
lock.disableKeyguard();


but it would be more secure if it was possible to change between a different screen lock rather than disabling it. Is it possible to change between different screen locks?







android screen-lock






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 29 '18 at 2:42









Cœur

17.6k9105145




17.6k9105145










asked Jul 16 '13 at 0:17









lau.tlklau.tlk

262




262













  • I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

    – Ryan S
    Jul 16 '13 at 0:25











  • I'll take a look. Thanks for your contribution.

    – lau.tlk
    Jul 16 '13 at 18:16











  • I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

    – Randy
    Sep 25 '13 at 4:54





















  • I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

    – Ryan S
    Jul 16 '13 at 0:25











  • I'll take a look. Thanks for your contribution.

    – lau.tlk
    Jul 16 '13 at 18:16











  • I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

    – Randy
    Sep 25 '13 at 4:54



















I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

– Ryan S
Jul 16 '13 at 0:25





I would look at device admins, I know some apps like AndroidLost can change your screen lock... I would use them as examples

– Ryan S
Jul 16 '13 at 0:25













I'll take a look. Thanks for your contribution.

– lau.tlk
Jul 16 '13 at 18:16





I'll take a look. Thanks for your contribution.

– lau.tlk
Jul 16 '13 at 18:16













I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

– Randy
Sep 25 '13 at 4:54







I just worked on something similar a few days ago. The manager which allows you to change (reset) the password only accepts a string. Based on the string it shows a different keyboard. So if the password only has numbers then it will be 0-9, otherwise it'll show Alphanumeric keyboard: developer.android.com/reference/android/app/admin/…. Maybe there's another way to change but not that I know of.

– Randy
Sep 25 '13 at 4:54














0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f17666021%2fswitch-between-screen-locks-programmatically%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f17666021%2fswitch-between-screen-locks-programmatically%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Monofisismo

Angular Downloading a file using contenturl with Basic Authentication

Olmecas