A physical button on iPhone, iPad and iPod Touch. Returns from the programm to the home screen
Questions tagged [home-button]
103 questions
0
votes
0 answers
How to open the device setting on home button click - android
want to open the setting of the device when i click on the home button in the device i tried this code but when the app start its open the device setting automatically
@Override
public void onAttachedToWindow() {
…

memo
- 1
- 4
0
votes
2 answers
how to disable home button in iPhone programmatically ios7
I am developing an enterprise app which supports Guided Access i.e disable/enable the home button (like Child Lock) once the app is launched. I have browsed & spend lot of time on this but no use. :( I din't get any helpful info.
Any suggestion or…

Anand
- 2,086
- 2
- 26
- 44
0
votes
5 answers
how to prevent use of HOME button in android and ios?
I am working on an application in which user should be able to use only one application,
he should not be able to switch application using HOME button,
the app. should be closed only when user presses the close button..
I have managed to override…

user3134673
- 1
- 1
0
votes
3 answers
Move application to background
Similar to Android and Ios I want to move my application to background and move foreground without losing progress on opening again. How can we achieve that in Tizen. The hardware home button is doing the same how can I do that through code.

Viswanath Lekshmanan
- 9,945
- 1
- 40
- 64
0
votes
1 answer
Don't let user leave my app
I'm developing and app that is going to be installed on a tablet. I'm going to rent this tablet to a person and I don't want this person to leave my application, I mean, I only want that tablet to use my app. I don't want the person to have access…

Carl
- 111
- 1
- 12
0
votes
0 answers
Android application with ActionBar stopped working(crashes) clicking the device home button
I have created a Android application with Action Bar tabs as like the below code.
sActionBar = getActionBar();
with 3 tabs using Fragments. The application is crashed, while clicking the device home button. How to resolve this issue?
EDIT 1:
Here…

Karthick
- 1,241
- 5
- 20
- 43
0
votes
1 answer
Detect if home button is pressed while the app is running in the background
I need a way for my app to know if the home button is pressed, while the app is running in the background. If the home button is pressed, something is gonna be added to a list inside the app. Is that possible somehow?

Wescorn
- 1
0
votes
4 answers
Kill app after 'Home' is pressed (stop it from just pausing)
Whenever the home button is pressed, onPause is called, however I have set onPause to handle pausing a drawing thread when a dialog is opened. This means that when you press the home button, it pauses the drawing thread and keeps the current…

TomRichardson
- 5,933
- 5
- 27
- 30
0
votes
1 answer
Does anyone know where I can find android's ICS home button's code?
I want to be able to modify that code to make it into double tap instead of a single tap. The reason is that it's too close the the space button on the screen on my phone. I always end up tapping it accidentally when pressing the space key or using…

Jean Saint
- 3
- 1
- 5
0
votes
2 answers
How to check HomeButton Click or Google Advertisement is click by user?
Any One help me for Provide Exit message to User when User click on Home Button?
I used onPause() method but the Problem is that when User click on google ad then onPause method is called and Message is display to User.
Thanks.

patel
- 830
- 1
- 11
- 26
0
votes
2 answers
How to check whether the Home button is pressed in iPhone and act accordingly?
I want to show an alert when a user taps the Home button. I tried with:
applicationWillResignActive
applicationDidEnterBackground
applicationWillEnterForeground
applicationWillTerminate
... but nothing worked. For the first three, the alert comes…

Abhijith
- 3,094
- 1
- 33
- 36
0
votes
1 answer
Pause main execution before iOS app terminates
How can I make my app pause for a couple of seconds to invoke a message inside applicationDidEnterBackground when I hit the home button? For example:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[self.delegate aMessage];
…

Hahnemann
- 4,378
- 6
- 40
- 64
0
votes
1 answer
How to manage/disable home button on Android 4.0?
The application that I'm developing must look like a launcher. I opened this topic because of I couldn't find the correct answer in whole topics that I looked at in Stack Overflow.
I want the application to disable or control whole buttons to exit…

halilkaya
- 467
- 6
- 21
0
votes
1 answer
jelly bean home bar fade out
Since it seems that we can no longer hide the bar with home and back buttons in Jellybean, I'd at least like to fade it out a little like in the Kindle app (where the buttons are only small discrete dots).
I've been searching all over the place for…

hacke
- 279
- 1
- 6
- 20
0
votes
1 answer
How to force app that has an main activity with category home set to close
i'm trying to develope an app for a tablet (ICS 4.0.3) that will be used in public places like bar, resturant ecc..
The user that uses that tablet ( so my application ) could not go in home and only administrator, setting a code, can go out.
What…

Jayyrus
- 12,961
- 41
- 132
- 214