Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wants the up-button only on API level 11 and later, but my program need to run on all devices. How can i do this?

ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);

OR

Can I add up-button to all API levels? Please advise...

share|improve this question

3 Answers

up vote 2 down vote accepted

You can check for the Android OS version install on the device with this:

int currentAPIVersion = android.os.Build.VERSION.SDK_INT;

if (currentAPIVersion >= android.os.Build.VERSION_CODES.HONEYCOMB) {

    // RUN THE CODE SPECIFIC TO THE API LEVELS ABOVE HONEYCOMB (API 11+)   
    ActionBar actionBar = getActionBar();
    actionBar.setDisplayHomeAsUpEnabled(true);
}

You would have to run this check in every Activity part of your app and perhaps, also provide an alternative when the API level is below 11.

There will however be a disparity in the UX for users on different API levels on their devices. To bridge this, you could consider looking at the ActionBarSherlcock Library that will help you bring parity to your app regardless of the API level (2.x and above).

UPDATED:

To add an action to the Home Button that will go back to the previous Activity, override the onOptionsItemSelected() method as shown below. Note the use of android.R.id.home in the code. You can add additional cases to the switch block if you have additional menu items that will be shown in the ActionBar in the same onOptionsItemSelected().

@Override
public boolean onOptionsItemSelected(MenuItem item) {

    switch (item.getItemId()) {

    case android.R.id.home: {
        this.finish();

        return true;
    }

    default:
        return super.onOptionsItemSelected(item);
    }
}
share|improve this answer
how can i add some action to that button. – Alex Chengalan Mar 20 at 9:11
@AlexChengalan: To the Home button? – IceMAN Mar 20 at 9:15
yes to the up-button – Alex Chengalan Mar 20 at 9:16
1  
@AlexChengalan: Please check the updated answer. I hope this is what you meant. If I am wrong in thinking that, let me know. – IceMAN Mar 20 at 9:23
Thanks man. This helps me so much. – Alex Chengalan Mar 21 at 4:16
show 1 more comment

you can use ActionBarSherlock - http://actionbarsherlock.com/ for what you need

share|improve this answer

ActionBarSherlock is definitely what you need,check this out http://actionbarsherlock.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.