Learn how to add Action Items to the Action Bar

You should now be familiar with the Android Themes from the last Article.

Action Bars can be used to add items or shortcuts. Like if the user wants to quickly search for something or add something or even modify the app settings.

Let’s see how you can add such functionality.

There are three primary components which needs to be modified.

1. Menu resource file for the activity.
2. The onCreateOptionsMenu method.
3. The onOptionsItemSelected method.

You can find the menu resource file in the /menu folder. It’s auto generated by the Android Studio when you create a new Project.

The other two methods needs to be overridden in the Activity.

Follow the video to understand how to add this feature. Source code is available here.

Note : For the ThemeDemoApp you need to first remove the v7 dependency, as it creates a conflict when you try to use showAsAction attribute.

Author: Ankur

I am Enthusiastic about Learning new things and sharing my Knowledge. I like programming and have a pretty good background in Computer Science.

Leave a comment