Questions tagged [back-button]

A button that will take the user back to the previous state that they were on.

A back button, often depicted with leftward facing arrow icon, is a basic control that allows the user to return to a previous application state.

In web browsers, a historical record of each time a user navigates to a new page is kept. Clicking the browser's back button will return the user to the previous page in the history.


For example, if a user navigates first to google.com (1) then to facebook.com (2) then to youtube.com (3), their browsing history will include all the pages they visited at each site in the order they were viewed (1, 2, 3).

While on youtube.com (3), if the user clicks the back button, they will then be taken to facebook.com (2). If they click the back button again, they will be taken to google.com (1).

1630 questions
0
votes
1 answer

Android long back key press, avoid FLAG_CANCELED

I'm trying to implement a long key press recognition, I've overridden the onKeyDown @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { // event.startTracking(); if…
TacB0sS
  • 10,106
  • 12
  • 75
  • 118
0
votes
0 answers

jQuery Mobile Back button in Header for Div Tag

I have a div Tag with a ul tag. The ul tag becomes dynamically list elements li. So what i want is to use the back button on the header to switch between the list elements. Example for my list: Mainmenu-->Submenu 1--> Submenu 2-->Data. So if i'm in…
Erdem Güngör
  • 867
  • 5
  • 14
  • 27
0
votes
6 answers

How to deny access after logout by means of back button or url typed in browser in asp.net?

I m facing the problem of Access to my pages even after Logout.. I have visited many forms but majority saying Disable back button.. I want to achieve this through code rather than disabling back button. My problem : I m able to access previous page…
rtvalluri
  • 557
  • 2
  • 6
  • 22
0
votes
0 answers

Consecutive touches in memory for iPad

I'm at the beginning of an App wich have a UINavigationController with several consecutive views. Forward navigation is Ok, but I found the next problem in backward navigation: When I touch in back button in one of the views which have to do some…
Randomclik
  • 29
  • 3
0
votes
1 answer

onBackPressed and onKeyDown not working

I have one activity in my app and I have 2 fragments - A and B. In MainActivity layout there is a FrameLayout. From MainActivity I call FragmentManager to load fragment A into FrameLayout. Then, from fragment A I load fragment B into FrameLayout. In…
Egor Gavrilov
  • 25
  • 1
  • 5
0
votes
2 answers

How to add a Back button to a NavigationBar?

How do I add the back button to a navigation bar? I know there are some related questions but none of them helped. I'm not using storyboard nor did I start with the Master Detail template. Is there a setting to do this? or do you add it by code? if…
Daniel Medina Sada
  • 478
  • 1
  • 5
  • 16
0
votes
2 answers

Android Back Button With Webview

I am having an issue with the back button in my android app. I am trying to have it go back through the previous pages and if unable then to exit. I pick through the code on the developer website and nothing is working. I would appreciate any…
0
votes
2 answers

iOS developer doing first Android app: best practices for back navigation

I'm unclear about Android's UI mechanism to go "back" one screen. I have read the docs and I understand that the hardware back button should serve to do just that. Meanwhile, the Action Bar in ICS serves as an "up" button if the activity has…
Steveo
  • 2,238
  • 1
  • 21
  • 34
0
votes
2 answers

Table View Go To Same Place After Selection

Is it possible after selecting a cell in the table view and hitting the back button on the following view controller to arrive at the same place in the table? I don't like how it goes back to the top, especially because of the size of my table.
Eduardo
  • 159
  • 8
0
votes
1 answer

Go back to previous activities

I have 2 Activities: DetailsBuildingActivity and EditBuildingActivity. DetailsActivity has a button to go to the EditBuildingActivity, to edit properties of the building (like name, size, etc). After editing and saving, you the…
mXX
  • 3,595
  • 12
  • 44
  • 61
0
votes
1 answer

backbutton on my android webview crash

Now im having trouble getting the hardware back button to work. The app loads fine as does page and everything else but as soon as i hit the phones back button it crashes then forces close. Google's instructions sucked also as i am a beginner and…
Emirnop
  • 43
  • 1
  • 8
0
votes
1 answer

WP7 PhoneGap application back button exiting application

I am working on WP7 Phonegap app. I have used below code to handle back button, but whenever I click back button , back button event is not cancelled and application gets exited. void OnBackKeyPressed(object sender, CancelEventArgs e) …
Shashant Dahikar
  • 252
  • 4
  • 16
0
votes
1 answer

Save and Restore UIViewcontroller when back button is pressed

I have two UIViewControllers. In first UIViewController I have a UITableView as a subview. When any one of the UITableViewCell is selected, a UIView(as a subview) will be displayed, which have 9 buttons. When any one of the button is pressed, Second…
Ramu Pasupuleti
  • 888
  • 2
  • 15
  • 35
0
votes
0 answers

check soft keyboard state when pressed by back button

I have an Eidt Text area. After finished my input from soft keyboard, I hide the soft keyboard by pressing Back Button. The question is that how can check its current state by programmatically(hidden or visible) thanks.
RealDream
  • 407
  • 3
  • 6
  • 18
0
votes
1 answer

Using back button doesn't clear old content

I'm using gwtp and I have some troubles with the browsers back button. My DefaultPlace is a login page (root content). If the the login is correct, it directs you to a welcome page (MainPagePresenter) with a menu bar. This menu bar is always visible…
kArvee
  • 84
  • 1
  • 11