Override onCreateOptionsMenu to inflate the menu for the Activity
Override onCreateOptionsMenu to inflate the menu for the Activity @Override public boolean onCreateOptionsMenu(Menu menu) { /* Use AppCompatActivity's method getMenuInflater to get a handle on the menu inflater */ MenuInflater inflater = getMenuInflater(); /* Use the inflater's inflate method to inflate our menu layout to this menu */ inflater.inflate(R.menu. forecast ,menu); /* Return true so that the menu is displayed in the Toolbar */ return true ; }