Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6318781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T15:41:09+00:00 2026-05-24T15:41:09+00:00

I have an Activity containing a ViewFlipper and would like to show a different

  • 0

I have an Activity containing a ViewFlipper and would like to show a different option menu for each view in that ViewFlipper. That is, the type of menu displayed when the menu button is pressed would depend on the type of the current view.

However, onCreateOptionsMenu() is called only once (when showing the option menu for the first time), so creating the different menus can’t be implemented there.

How could I solve this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T15:41:09+00:00Added an answer on May 24, 2026 at 3:41 pm

    First read about onPrepareOptionsMenu(Menu menu)

    Each time the user presses the Menu on their Android device while inside one of your activities, the onPrepareOptionsMenu method is called. The first time the menu is shown (i.e. only once), the onCreateOptionsMenu method is called.

    Basically, the onPrepareOptionsMenu method is where you should make any changes such as enabling/disabling certain menu items, or changing the menu item text depending on the circumstances.

    So do this (Don’t use onCreateOptionsMenu(Menu menu) )

    //Dynamically create context Menu
        @Override
        public boolean onPrepareOptionsMenu(Menu menu) {
            menu.clear(); //Clear view of previous menu
            MenuInflater inflater = getMenuInflater();
            if(condition_true)
                inflater.inflate(R.menu.menu_one, menu);
            else
                inflater.inflate(R.menu.menu_two, menu);
            return super.onPrepareOptionsMenu(menu);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an activity that launches another activity with startActivityForResult method. I would like
I have an activity that has a TabHost containing a set of TabSpecs each
Currently I have a TabHost implemented with 3 tabs each containing a separate activity.
Let's say I have an Activity which displays a View containing a TextView .
I have an SQL statement that grabs the grades of different activity types (Homework,
I have an Activity that inflates an XML FrameLayout that has a custom View,
I have an activity MyActivity that extends from MapActivity. In the .xml file containing
I have noticed with Views in android that sometimes getContext() returns the containing activity,
I have an activity that gets a bitmap from the sdcard. Its view is
I have an activity that contains several user editable items (an EditText field, RatingBar,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.