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.

enter image description here

Near Stream there is a small arrow that takes u to the previous activity when clicked

I want to make the same in my app, I used

  getSupportActionBar().setDisplayHomeAsUpEnabled(true);

do I need to use onOptionsItemSelected ?

The arrow is appearing, but nothing happens once clicked.

And I have two Items in my menu, they appear everywhere where I call OnCreateOptionsMenu

this is my item code where I want to to appear only in my last activity, How ?

      <item 
android:id="@+id/bAbout"
android:title="About"
android:showAsAction="always"/>
share|improve this question
2  
Just as an aside the "up" button isn't supposed to, necessarily, take you to the previous activity (that is what the back button does exclusively, although often up and back do the same ) but to a higher level in the conceptual hierarchy of your app. It's fully explained here : developer.android.com/design/patterns/… – Iain_b Aug 16 '12 at 23:14

1 Answer

up vote 18 down vote accepted

Yes you have to implement onOptionsItemSelected(). The id for that button is android.R.id.home

public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {

    case android.R.id.home:
         // Do whatever you want, e.g. finish()
         break;

    default:
        return super.onOptionsItemSelected(item);
    }
}

And I have two Items in my menu, they appear everywhere where I call OnCreateOptionsMenu

I'm not sure what the problem here is. Of course you should only implement onCreateOptionsMenu() and inflate that menu resource where you want it. Removing onCreateOptionsMenu() for all activities which are not supposed to have these options should work.

share|improve this answer
thanks Alextsc =), Accepted ! – John Jr. South Aug 16 '12 at 23:16

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.