質問

enter image description here

I need to remove the back arrow and keep only the home icon in action bar sherlock library. I set getSupportActionBar().setDisplayHomeAsUpEnabled() to false but it disabled action bar button.

役に立ちましたか?

解決

Maybe you forgot to set the home button itself as enabled?

Try this instead:

    // Hide the ActionBar's up button
    getSupportActionBar().setDisplayHomeAsUpEnabled(false);
    getSupportActionBar().setHomeButtonEnabled(true);
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top