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

Back button in Android and android:noHistory="true"

I have implement an application with many screens, an used android:noHistory="true" for exiting from any of the screen... I have EXIT Button on all the Screens in my application.. But i have faced a problem while processing the Application, In table…
MGR
  • 382
  • 2
  • 7
  • 21
0
votes
1 answer

Back button functionality in android tabgroup activity

I have to develop back button functionality in android application. I have 4 tabs in tabgroup activity. Here i have to create the 4th tab is Go Back. Here i have to 4th tab means the 4 th tab is go to my previous activity. These is my …
android
  • 33
  • 3
  • 12
0
votes
2 answers

Exit Android App From Specified Point

Ok first, let me say, I have read many threads here, and elsewhere, but can't seem to find the answer here. I realize that "exiting" and app is frowned upon, but here is my scenario, what should I do? First launch, customer sees login screen, with…
Wanabrutbeer
  • 676
  • 6
  • 11
0
votes
3 answers

Backbone router getting history length for back-button

I'm using Backbone inside a PhoneGap application. Like every mobile app I need a back-button functionality. It's basically working perfectly with Backbone, because I can simply use window.history.back() and it just works. The only problem I have is…
Prinzhorn
  • 22,120
  • 7
  • 61
  • 65
0
votes
1 answer

Action Bar Up button reserved space?

I noticed that when you put a custom drawable in the actionBar, even when I don't set the setDisplayHomeAsUpEnabled(true); the space in the action bar get's reserved for the icon. I have set the drawable in the style:
Tooroop
  • 1,824
  • 1
  • 20
  • 31
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

extending FragmentActivity makes the backbutton lead to the latest new Activity

if this has already been asked and answered, sorry, but havent found it. Im new at android. At the base of my application I have a class that extends Activity. It contains three buttons whereof two lead to new classes that also extend activity. In…
gnyrfta
  • 95
  • 10
0
votes
0 answers

onbackpressed exits the application

I have an application that has a Main menu (MainMenu.java) which starts an activity (ActivityBlah) on a menu button press: public void onClick(View v) { switch (v.getId()) { case R.id.AcitivityBlahButton: startActivity(new Intent(MainMenu.this,…
0
votes
1 answer

Prompt a message "Press back button twice to return to app" in wp7

I am working on WP7 app. In this am launching youtube url in Yotube app. To return to my app from YouTube user will have to click back button twice, as per my research this is a known issue. I need to show a message(inside youtube) to user like…
0
votes
2 answers

Browser back button page state on a custom button click

I have two pages. on the first page user select some filters and press search button then user navigates to the second page. On the second page user will see a grid and he will perform some tasks there. Now the user needs to go back to the first…
chamara
  • 12,649
  • 32
  • 134
  • 210
0
votes
1 answer

Android activity is dimmed when returning with back button

I have a very simple scenario: In an activity the menu key is pressed, taking us to a menu. A menu option is selected taking us to an activity which presents a listview. Pressing the backbutton on the listview activity returns us to the original…
Dave
  • 31
  • 1
  • 5
0
votes
1 answer

Jquery Mobile using fastklick but Back button very slow

I am using the fastklick plugin for iOS what is very popular on the net for speeding the click event on jquery mobile apps with phonegap on iOS. The buttons and links are working very well except the back button from jquery. If I use this:
Mutatos
  • 1,675
  • 4
  • 25
  • 55
0
votes
4 answers

Can't hide back button inside my navigationbar

I am trying to hide my backbutton in the firstView after I logged into the application. I have this piece of code inside my ViewWillAppear. self.navigationController.navigationItem.hidesBackButton =…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
1 answer

JQuery UI Tabs: nested Tabs, AJAX loading and Back button

I'm loading JQuery UI tabs using AJAX. I have 3 levels of nested UI tabs: vertical horizontal horizontal Most of the stuff is only 2 levels deep but some are 3. The issue is the 3rd level. I followed this:…
beginner_
  • 7,230
  • 18
  • 70
  • 127
0
votes
2 answers

How to catch the event when a view is shown after returning from another view?

A simple question I just can't find the answer... I have view A and B, after clicking on a button on A, B shows up, and at this time if I click the back button on device, A will be shown again. Now I change something in B and hope it would affect A,…
boreas
  • 1,041
  • 1
  • 15
  • 30
1 2 3
99
100