How to launch/display a temporary screen on home button click [reference included]
I'm trying to build a child lock app. An app that basically allows to add a child lock with a list of allowed apps for a child to use.
Most of the components are complete. I'm stuck at one specific step.
When on lock mode, If user (child) does press the home key, I'm able to intercept home key and re-launch the lock-mode-screen which holds a list of apps that can be accessed.
The issue is the delay that occurs (about 5-7 seconds) between the home button press and re-launch of my activity.
During this delay period, user (child) can access apps that are not locked. I'm trying to avoid this delay.
In the process to find possible solution for the above problem, I happened to refer an existing app - "KIDZ ZONE".
This specific app draws a UI/SCREEN with quite a lesser delay, about 1 second. I'm trying to understand how this can be replicated.
Any suggestions would be appreciated!
The possible ways I have tried is triggering a broadcast event and calling same activity. This works but with the delay of 5-7 seconds, which I want to minimize.
MainActivity -
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
InnerRecevier innerReceiver = new InnerRecevier();
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
registerReceiver(innerReceiver, intentFilter);
}
Broadcast Receiver -
public class InnerRecevier extends BroadcastReceiver {
final String SYSTEM_DIALOG_REASON_KEY = "reason";
final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
@Override
public void onReceive(final Context context, Intent intent) {
String action = intent.getAction();
if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
if (reason != null) {
if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {
Intent i=new Intent(context.getApplicationContext(),MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
}
}
I'm trying to reduce the delay caused between home button press and re-launch of the activity. Attaching a gif file to show how the reference app handles the expected solution.
Reference - https://imgur.com/ME1dkQP.gif
android button click android-homebutton home-button
New contributor
add a comment |
I'm trying to build a child lock app. An app that basically allows to add a child lock with a list of allowed apps for a child to use.
Most of the components are complete. I'm stuck at one specific step.
When on lock mode, If user (child) does press the home key, I'm able to intercept home key and re-launch the lock-mode-screen which holds a list of apps that can be accessed.
The issue is the delay that occurs (about 5-7 seconds) between the home button press and re-launch of my activity.
During this delay period, user (child) can access apps that are not locked. I'm trying to avoid this delay.
In the process to find possible solution for the above problem, I happened to refer an existing app - "KIDZ ZONE".
This specific app draws a UI/SCREEN with quite a lesser delay, about 1 second. I'm trying to understand how this can be replicated.
Any suggestions would be appreciated!
The possible ways I have tried is triggering a broadcast event and calling same activity. This works but with the delay of 5-7 seconds, which I want to minimize.
MainActivity -
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
InnerRecevier innerReceiver = new InnerRecevier();
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
registerReceiver(innerReceiver, intentFilter);
}
Broadcast Receiver -
public class InnerRecevier extends BroadcastReceiver {
final String SYSTEM_DIALOG_REASON_KEY = "reason";
final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
@Override
public void onReceive(final Context context, Intent intent) {
String action = intent.getAction();
if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
if (reason != null) {
if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {
Intent i=new Intent(context.getApplicationContext(),MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
}
}
I'm trying to reduce the delay caused between home button press and re-launch of the activity. Attaching a gif file to show how the reference app handles the expected solution.
Reference - https://imgur.com/ME1dkQP.gif
android button click android-homebutton home-button
New contributor
add a comment |
I'm trying to build a child lock app. An app that basically allows to add a child lock with a list of allowed apps for a child to use.
Most of the components are complete. I'm stuck at one specific step.
When on lock mode, If user (child) does press the home key, I'm able to intercept home key and re-launch the lock-mode-screen which holds a list of apps that can be accessed.
The issue is the delay that occurs (about 5-7 seconds) between the home button press and re-launch of my activity.
During this delay period, user (child) can access apps that are not locked. I'm trying to avoid this delay.
In the process to find possible solution for the above problem, I happened to refer an existing app - "KIDZ ZONE".
This specific app draws a UI/SCREEN with quite a lesser delay, about 1 second. I'm trying to understand how this can be replicated.
Any suggestions would be appreciated!
The possible ways I have tried is triggering a broadcast event and calling same activity. This works but with the delay of 5-7 seconds, which I want to minimize.
MainActivity -
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
InnerRecevier innerReceiver = new InnerRecevier();
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
registerReceiver(innerReceiver, intentFilter);
}
Broadcast Receiver -
public class InnerRecevier extends BroadcastReceiver {
final String SYSTEM_DIALOG_REASON_KEY = "reason";
final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
@Override
public void onReceive(final Context context, Intent intent) {
String action = intent.getAction();
if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
if (reason != null) {
if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {
Intent i=new Intent(context.getApplicationContext(),MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
}
}
I'm trying to reduce the delay caused between home button press and re-launch of the activity. Attaching a gif file to show how the reference app handles the expected solution.
Reference - https://imgur.com/ME1dkQP.gif
android button click android-homebutton home-button
New contributor
I'm trying to build a child lock app. An app that basically allows to add a child lock with a list of allowed apps for a child to use.
Most of the components are complete. I'm stuck at one specific step.
When on lock mode, If user (child) does press the home key, I'm able to intercept home key and re-launch the lock-mode-screen which holds a list of apps that can be accessed.
The issue is the delay that occurs (about 5-7 seconds) between the home button press and re-launch of my activity.
During this delay period, user (child) can access apps that are not locked. I'm trying to avoid this delay.
In the process to find possible solution for the above problem, I happened to refer an existing app - "KIDZ ZONE".
This specific app draws a UI/SCREEN with quite a lesser delay, about 1 second. I'm trying to understand how this can be replicated.
Any suggestions would be appreciated!
The possible ways I have tried is triggering a broadcast event and calling same activity. This works but with the delay of 5-7 seconds, which I want to minimize.
MainActivity -
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
InnerRecevier innerReceiver = new InnerRecevier();
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
registerReceiver(innerReceiver, intentFilter);
}
Broadcast Receiver -
public class InnerRecevier extends BroadcastReceiver {
final String SYSTEM_DIALOG_REASON_KEY = "reason";
final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
@Override
public void onReceive(final Context context, Intent intent) {
String action = intent.getAction();
if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
if (reason != null) {
if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {
Intent i=new Intent(context.getApplicationContext(),MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
}
}
I'm trying to reduce the delay caused between home button press and re-launch of the activity. Attaching a gif file to show how the reference app handles the expected solution.
Reference - https://imgur.com/ME1dkQP.gif
android button click android-homebutton home-button
android button click android-homebutton home-button
New contributor
New contributor
edited Jan 18 at 17:39
CodeNoob
New contributor
asked Jan 18 at 17:33
CodeNoobCodeNoob
11
11
New contributor
New contributor
add a comment |
add a comment |
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
});
}
});
CodeNoob is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54258879%2fhow-to-launch-display-a-temporary-screen-on-home-button-click-reference-include%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
CodeNoob is a new contributor. Be nice, and check out our Code of Conduct.
CodeNoob is a new contributor. Be nice, and check out our Code of Conduct.
CodeNoob is a new contributor. Be nice, and check out our Code of Conduct.
CodeNoob is a new contributor. Be nice, and check out our Code of Conduct.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54258879%2fhow-to-launch-display-a-temporary-screen-on-home-button-click-reference-include%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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