public boolean onCreateOptionsMenu(Menu miMenu){
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.mi_menu, miMenu);
return true;
}
Data this code What does inflate () really mean? I understand that the first parameter is your created menu but as this inflate method is explained with the second parameter, what is this method supposed to do with that Menu object?