Java syntax explanation – getMenuInflater()

The line getMenuInflater().inflate(R.menu.menu_quiz, menu); is a short form of this:

MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_quiz, menu)

Leave a Comment