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 8081081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:36:54+00:00 2026-06-05T16:36:54+00:00

My app has an options menu that is available in almost all Activities, which

  • 0

My app has an options menu that is available in almost all Activities, which was created by implementing onCreateOptionsMenu(). But in one Activity there is a PopupWindow, and when this PopupWindow has focus (required for proper functioning) tapping the menu button does not bring up the options menu.

PopupWindows do not have an onCreateOptionsMenu() function. Is there some other way to add an options menu to a PopupWindow?

Alternatively, is there a way to get the options menu from the Activity behind it to show up when the user taps the menu button?

  • 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-06-05T16:36:56+00:00Added an answer on June 5, 2026 at 4:36 pm

    I solved this by intercepting the menu key and calling openOptionsMenu() on the activity. Here is the key listener:

    OnKeyListener mMenuKeyListener = new OnKeyListener() {
        @Override
        public boolean onKey(View view, int keyCode, KeyEvent event) {
            if(keyCode==KeyEvent.KEYCODE_MENU) {
                activity.openOptionsMenu();
                return true;
            } else {
                return false;
            }
        }
    };
    

    I think you have to add this key listener to every view in the PopupWindow to get it to work, so I wrote a function to do that:

    public void setupMenuKeyListenerRecursive(View v) {
        if (v != null) {
            try {
                ViewGroup viewGroup = (ViewGroup)v;
                int childCount = viewGroup.getChildCount();
                for (int index = 0; index < childCount; index++) {
                    View child = viewGroup.getChildAt(index);
                    setupMenuKeyListenerRecursive(child);
                }
            } catch (Exception e) {
            }
            v.setOnKeyListener(mMenuKeyListener);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created a MainActivity in which the user has a few app options, displayed
Almost every ios app now has something like Feed option. Programming that usually includes
I have an iPhone app that has a 4 option menu, and allows the
I'm making an app that has more options than will easily fit into a
My app has several buttons which trigger different events. The user should NOT be
My app has 6 menu items, so the OS shows the first 4, then
My app has some table cells that vary in height. The cells can also
My app has normal users: those which come through a typical signup page facebook(FB)
My app has a common class that displays an actionSheet whenever Contact Us is
I have a menu bar on my app, that I need to share between

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.