Last active
August 29, 2015 14:00
-
-
Save beydogan/11316792 to your computer and use it in GitHub Desktop.
android action bar example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public boolean onCreateOptionsMenu(Menu menu) { | |
// Inflate the menu items for use in the action bar | |
MenuInflater inflater = getMenuInflater(); | |
inflater.inflate(R.menu.menu, menu); | |
return super.onCreateOptionsMenu(menu); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment