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
-2
votes
1 answer

Android activity closing entire app on back button press

I have a main activity in my app. This activity creates two other activities (at different times). One is a settings activity and the other is a custom activity. Now my problem is when i am in the settings activity and i press the back button, it…
Zapnologica
  • 22,170
  • 44
  • 158
  • 253
-3
votes
3 answers

Problem with back button in my app

I want to clear shared preference values when my mobile is switched off?
-3
votes
1 answer

iOS random problem of navigation, buttons not reacting for tap each time

I have noticed a problem with the navigation in our app. Back buttons on UINavigationController for dismiss a viewController, or ok button for dismiss keyboard not reacting on tap each time. I have to press several times to finally enter in the…
-3
votes
1 answer

PHP: back to previous page loaded with HTTP POST

I have a PHP application with a page that has a form to search data. When i click on Search Button there is a Sumbit to same page with HTTP POST method. At this point i click on one item in result list and go to another page. If i click the browser…
Marco Grieco
  • 229
  • 2
  • 6
  • 16
-3
votes
2 answers

How to hard code the Back button?

I hid the action bar in my app and added an "ImageView" that represents the back button, my question is how to hard coding the back button in android studio? btnBack.setOnClickListener(new View.OnClickListener() { @Override public…
-3
votes
3 answers

How to have a back button beside the app title?

How to have a back button beside the app title ? public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.information); ActionBar actionBar = getSupportActionBar(); …
Tony
  • 2,515
  • 14
  • 38
  • 71
-3
votes
3 answers

Method must have a return type (C#)

Been getting a "Method must have a return type, and i don't really understand why. It is the "public HelpView()" part that returns the error. (Top of code, made it into a block quote) Web browser application, code is for back and forward…
-3
votes
2 answers

How to set back key action on Android

I'm working on an Android application that starts from an activity that serves as the menu screen (I'll call this activity the menu activity). There is a button that moves the app to another activity where the user can enter their name (I'll call…
-3
votes
1 answer

Software back button android

I need a back button with same functionality as default back button of device but inside of app.
BegCoder
  • 9
  • 6
-3
votes
1 answer

I have a project with a web browser inside. How do I make a back button in the navigation bar for the browser?

I need the back button to make the browser go back, instead of navigate through the different app views.
fewaf
  • 145
  • 13
-4
votes
1 answer

How to disable the browser back button..?

I need to disable my browser back button for an money transfer application.. once the final deal confirmation is reached then the back button should be disabled.. Here is my code where i use scripts..I goggled some examples which were places in …
user3595072
  • 57
  • 2
  • 11
-5
votes
2 answers

Referring back to code in C#

Is it was possible to run a console application in c# which has the ability to go back to a area of code? More details -- Application launch: start code runs thought code Goes back to start I know this can be done in batch with marking an area…
-11
votes
2 answers

Bean's method that returns to the previous page

After performing the appropriate action, the method of my bean must ensure that the browser back to the previous page. How can I handle it? I am using the CDI Conversation.
BillB
  • 37
  • 1
  • 10
1 2 3
98
99