Skip to main content

Step by Step Guide to create option Menu in Android



Option menu is very important part of any app. If you are creating your app using Android Studio then it will add the option menu by default to your activity. But, if you would like to create the option menu by yourself, to use with any other activity then you have to add it manually by code.

Step 1. Create the activity for option menu


If you are going to create option menu for one activity then, same menu can be used for others activities as well.

So if you want to add the menu to existing activity then its okay, alternatively you can create the new activity as well. Just Right click on the folder of Android Studio and select the new activity.

Step 2. Create the resource file for Option Menu


Now, you have to check if Menu folder exists inside res folder in android studio. If it is not their then right click on res folder and click on New->Directory and enter the folder name as menu.

Further, right Click on menu folder and select new-> Menu Resource File and put the name of your menu resource file, for example here we put default_menu.xml

Step 3. Add menu item to resource File and add menu item


Now, it's time to open the default_menu.xml file and edit as given below. Here in the below code item tag represent the single item.

In case you need to create more item then add the similar item tag change the required filed.
<?xml version="1.0" encoding="utf-8"?> 
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/debug_android"
android:title="Visit DebugAndroid"
android:orderInCategory="100"
app:showAsAction="withText"
android:icon="@android:drawable/ic_menu_agenda"/>
</menu>

Step 4. Inflate the default_menu xml in activity


Now, open the your main activity file and override the onCreateOptionMenu method.
 @Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.default_menu, menu);
return true; }

Step 5. Response to User Click event


Next, override the onOptionItemSelected method of your activity and modify it as given below.
 @Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
switch (item.getItemId()) {
case R.id.debug_android:
Intent mysiteIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.debugandroid.com"));
startActivity(mysiteIntent);
return true;
}
return true;
}

We are done with the Configuration now you can test your app, we have done this tutorial on previous tutorial of creating VideoGallery app in android.
Option menu example in android

Download  VideoGallery App from Google PlayStore.

Download the Source Code from Github, Here https://github.com/debugandroid/NativeAd

Comments

  1. […] You May Like this:- Showing Native AD In Recycler View Android Step by Step Guide to create option Menu in Android […]

    ReplyDelete
  2. […] Also Read:- Showing Native AD In Recycler View Android Step by Step Guide to create option Menu in Android […]

    ReplyDelete
  3. […] Also Read:- How to Create Video Gallery App Using Recyclerview Step by Step Guide to create option Menu in Android […]

    ReplyDelete
  4. […] Top 10 Android Development Resources & Tools How to Create Video Gallery App Using Recyclerview Step by Step Guide to create option Menu in Android […]

    ReplyDelete

Post a Comment

Popular posts from this blog

Flutter How to Start Android Activity from Flutter View

Flutter and Dart is an excellent combination for creating the UI, but for accessing the platform-specific service we need to open platform-specific activity. So lets in this article we will explore how to start an android activity and access the service from Flutter View. Create a Project for this Android Activity Flutter View Demo Create a Project From File menu select the New Flutter Project Enter the project name Select the AndroidX support and click on next After the above, we step click on Finish We will have the following project structure created. Create the Second Activity in Android Just go to the android folder and open it in separate windows. We will have the following project structure. Create the Activity Just right-click on the Kotlin folder and create a blank activity from the menu. If you create the activity then you may be required to upgrade the Gradle and do some import. So Just click on update and wait for the project s

Kotlin Parcelable Array Objects Send To Activity

We know that IPC (Inter Process Communication) between the activity is an extremely important part of any application development. We often required that we need to send some data to other activity. For example, we may be required to send an array of data, data could be an Integer, String, Long, Double, Float or any other custom data objects. So, In this example, we are going to learn how to implement the Kotlin Parcelable Array object to send the data from one activity to second activity. What is Parcel? The parcel class is designed as a high-performance IPC transport. A Parcel can contain both flattened data that will be unflattened on the other side of the IPC, and references to live IBinde r objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel. Create Kotlin Parcelable Array Objects Parcelable is API for placing the arbitrary objects into the Parcel. In Actual in android app development, Parcelable is an interface

Scan and List All Available WiFi Network In Android

In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. You May Like Below Topic: How to Read and Write JSON data using GSON WP Android App using REST and volley WP Android App using REST and volley part2 Implementation of SwipeRefreshLayout in RecyclerView Create Amazing Bottom Navigation Bar Without Any External Library Introduction In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. We will add this functionality to our existing Demo app " Video Gallery ". If you would like to check out t