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
2 answers

How to make it so user can't go back unless they click the button

So what I'm trying to do is make it so the user is not able to go back to the previous activity without clicking the "save" button. I just don't know how to implement a back button exception sort of thing. Why I'm wanting to do this is because when…
Fernando
  • 450
  • 1
  • 7
  • 22
0
votes
1 answer

Backbutton functionality when "changing Pages" with Ajax

In our application, we don't have "real" links anywhere, but all the pages are loaded with ajax. This would look something like this: function changePage(module, params){ //Ajax call is done, content is being displayed in the content div } And so,…
Michael Kunst
  • 2,978
  • 25
  • 40
0
votes
3 answers

Flex Mobile: preventing back button from exiting app

I'm developing a Flex Mobile application for some android tablet and until now I've been unable to prevent the Back Button from leaving the application. I still want it's regular functionality, it's just that I don't want it to exit the app. I want…
0
votes
1 answer

EULA can be skipped by pressing back button (Android)

I made an Android App that contains an EULA, to make the EULA I used the Dialog class (android.app.Dialog). But when the EULA shows, to not agree to it (escape it) you can press the Back Button which isn't very good and definitely not what I want to…
user2990508
  • 255
  • 1
  • 4
  • 11
0
votes
0 answers

Support back button with the same URL

I've done my share of research but failed to find any reliable option. I've a AJAX-based mobile web app, developed in Spring MVC and want to support both the browser's back button as well as a button of the same function in the layout itself. Can…
Nuno Neto
  • 303
  • 2
  • 4
  • 15
0
votes
1 answer

Browser back button behaviour django

I have a page that user can place an order via a model form. The post method is the same page. path domain/provider/order/3 meaning add an order for provider 3 view is like this def place_order(request, provider_id): form = OrderForm() if…
Apostolos
  • 7,763
  • 17
  • 80
  • 150
0
votes
7 answers

Exit on backbutton pressed

I have two activities. MainActivity ListActivity After some job in MainActivity, ListAllActivity starts. I want to exit the application when back button pressed from ListAllActivity. And my code for this is, @Override public void onBackPressed()…
0
votes
1 answer

Android : Back Button and activity lifecycle

I'm having a hard time managing a back button in my app. If I'm not mistaken, the back button default function should return the user to their previous activity. But when I'm changing from one activity to another I call finish() in the listener.…
iwalyfa
  • 49
  • 7
0
votes
2 answers

Change frame of Backbuttonitem in navigation bar

I have created a custom navigation bar in ipad with height of 80. In this case there occurs an issue with bask buttons frame. The height of navigation bar increased but the back button's height is same as before with height os navigation bar as 44.…
0
votes
1 answer

Logout functionality using Servlets and Filters

This is my filter code and the one below that is the doPost() method in my servlet. I'm trying to implement logout functionality. When logout button is clicked, control is sent to the servlet and it then redirects to my login page. However, I'm…
Anjan Baradwaj
  • 1,219
  • 5
  • 27
  • 54
0
votes
1 answer

Add data jQuery mobile back button

I have some pages that get information from the database. But when pressing back on pages the fields are just empty (normal filled with values from database). So is it possible to pass some data or form along with the back button with jQuery mobile…
David
  • 840
  • 6
  • 17
  • 37
0
votes
0 answers

Fragment replaced still catch backPressed

I'm using one Activity which contains one Fragment at a time. I use support.v4. The "onBackPressed" of Activity and Fragment is override, so I can't use the original back button, I have to override it myself. So I'm in fragment A, I go to fragment…
0
votes
2 answers

C# back event in button

I'm trying to code a back event in C# into a button click event, but I cant find the right steps. I am using Visual Studio 2008.
Selase
  • 175
  • 5
  • 24
0
votes
2 answers

Java Applets vs Back Button

I noticed that if you're playing a song at http://listen.grooveshark.com/ and you hit the back button Flash is smart enough to keep on playing the music while navigating "back" inside the Flash application. Is it possible to implement this sort of…
Gili
  • 86,244
  • 97
  • 390
  • 689
0
votes
3 answers

removing background image of uibarbuttonitem back button

I want to remove background of a UIViewController backbutton. How can I do that? I tried following code backButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"back.png"] landscapeImagePhone:nil style:UIBarButtonSystemItemCancel…
aakpro
  • 1,538
  • 2
  • 19
  • 53