• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How do I tweak the physical back button? PhoneGap

  • Thread starter Thread starter Deleted User
  • Start date Start date
D

Deleted User

Guest
I am currently using PhoneGap to develop my app.
Anyone know how do I tweak the physical back button ?
Example:
Click Back ---> navigate to previous page.
If no previous page then exit app.
 
To change the behavior of any button, you just need to overwrite its function. place the following function in the activity of your choice.

Code:
@Override
public void onBackPressed() {
    // Code you want to Execute 
}
 
To change the behavior of any button, you just need to overwrite its function. place the following function in the activity of your choice.

Code:
@Override
public void onBackPressed() {
    // Code you want to Execute 
}

He is using PhoneGap, not Eclipse/Java/SDK.

You might be better off asking this on the PhoneGap forums, as not many people here use PhoneGap.
 
Back
Top Bottom