Questions tagged [back]

Method or control to return user to previous state, page or screen.

Refers to questions about preventing, detecting, handling, controlling, etc:

  1. The back button on web browsers
    • History of visited sites
    • Backing out of a "dirty" page
  2. The hardware or software back button on smartphones and other similar devices
  3. Navigation in Android/IOS applications
    • Returning to the previous view
    • Exiting the application (Android)

et cetera.

Does not refer to

  • Keyboard backspace key (^H)
  • Keyboard delete key (^?)
  • Reverse side of a physical device
  • Previous versions of an application
1484 questions
0
votes
1 answer

Doesnt go normal after hitting back button

When I open a certain class which extends ArrayAdapter there is something strange happening when I go to another screen en hit the back button. I set that for certain values the background of the inflated xml file should be set to grey…
Jack Commonw
  • 395
  • 6
  • 16
0
votes
3 answers

Hierarchy navigation back button

I need to implement a back button for my asp application. In my web application I got 3 module task1.aspx ->task1-1.aspx ->task1-2.aspx task2.aspx-> task2-1.aspx->task3-1.aspx task3.aspx->task3-1.aspx->task2.1aspx In the above example.3 module…
user998405
  • 1,329
  • 5
  • 41
  • 84
0
votes
2 answers

Login. form Back button post data

I am creating a login form using post method. It is working fine. The logout button work fine. But when I pressed back button the browser and reach the login page where user submit the id and password the resend option is there. Then it resend the…
0
votes
4 answers

disable back press only when the application would otherwise go to the background in Android

My application should ask the user for a confirmation before putting the application in the background when the user presses the back button. I tried to override dispatchKeyEvent. The problem is that I also have fragments that are pushed in the…
kingston
  • 11,053
  • 14
  • 62
  • 116
0
votes
1 answer

CakePHP no layout on back and forward button

We're building a large CMS in CakePHP with a Croogo install incorporated. We've run into an issue recently where the layout is not rendered correctly when users click the back in the browser (or the forward button for that matter). What you end up…
Jongosi
  • 2,305
  • 1
  • 28
  • 31
0
votes
2 answers

android: cancel notification on back pressed

I want to cancel all notifications related to my app when the back button is clicked. I am not able to find a way. Have you any idea?
user1471575
  • 731
  • 2
  • 15
  • 23
0
votes
1 answer

window.open in web application for iPad running in fullscreen replaces the existing window

I am writing a simple (ASP.NET) web application for the iPad. It is written and works well however one feature is it serving up PDF files (among others). To do this I used window.open to open the file. When this is done in Safari, it works…
0
votes
1 answer

Go back with UIModalTransitionStyle

That's what I'm trying to do: I have a navigationController based app and many different views. Let's say that on the third view, I want to view the view 4 using UIModalTransitionStyleCoverVertical. That I have done it using this…
0
votes
3 answers

android control back button while a dialog is on the screen

I have a timer which runs continously. When I press the BACK button I made a dialog to appear where you can quit from that intent or go back and cointinue the timer what has been stopped by the BACK button. Well if I click on the contimnue, the…
Jani Bela
  • 1,660
  • 4
  • 27
  • 50
0
votes
2 answers

Android Back Button Causing Bad Keycharmap warning

I am coding a java application for android. In the application, I am using the back button on the phone as a way to cancel a task I am running. However, when I press it, in the Log Cat, I get the following: 08-30 10:45:25.784:…
Pippa Rose Smith
  • 1,377
  • 5
  • 18
  • 42
0
votes
1 answer

How to make the back button act as the home button in Android

I have a very simple application. The app asks a question and depending on what the user clicks a different text is shown. Now, when the home button is pressed the phone goes to the home screen and the app pauses. But when I press the back button…
Darren Hoehna
  • 269
  • 2
  • 8
  • 19
0
votes
3 answers

Disable an android button pressing twice

I have an activity which contains a back button. when it is pressed, it starts another activity which contains a back button in same position. But the problem is it takes few seconds to start activity because it does some heavy task in background.…
Malaka
  • 314
  • 3
  • 12
0
votes
3 answers

Multiple Instances on Back pressed

I have an audio player which has two main activities. 1.The splash Activity for loading splash page and another for the player.When I press the back button and select my app from the launcher multiple instances of the activities are…
maddy.999
  • 13
  • 6
0
votes
1 answer

Custom action When Pressing 'back button' on a UINavigationController

I am using story boards to create my app, and I have a navigation controller which navigated back and forth between pages. Now when it goes back to a page (e.g. when the user taps the back button), I need the page which the user is going back to to…
byteSlayer
  • 1,806
  • 5
  • 18
  • 36
0
votes
2 answers

Collapsing previous activities and restarting the app

I have an Android app in which activity A calls activity B which calls activity C. in activity C there is button to restart the whole thing but the user should be able to navigate between the activities if he presses the back button. I've tried…
DAndroid
  • 3
  • 3