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