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 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;
}



Bu blogdaki popüler yayınlar

About Android padding, margin, width, height, wrap_content, match_parent, R Class

@SerializedName and @Expose annotations