show drop down menu within/from action bar

show drop down menu within/from action bar

Solution

When you want to anchor popupmenu to ActionItem in ActionBar you need to find view that renders ActionItem. Simple find view with findViewById() where id is same as id of your menu item in xml. css

DISPLAYING POPUP

public boolean onOptionsItemSelected(MenuItem item) {
    // ...

    View menuItemView = findViewById(R.id.menu_overflow); // SAME ID AS MENU ID
    PopupMenu popupMenu = new PopupMenu(this, menuItemView); 
    popupMenu.inflate(R.menu.counters_overflow);
    // ...
    popupMenu.show();
    // ...
    return true;
}

MENU

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >

     ....

     <item
    android:id="@+id/menu_overflow"
    android:icon="@drawable/ic_overflow"
    android:showAsAction="ifRoom"
    android:title="@string/menu_overflow"/>

     ....

</menu>

or you can dynamically genereate the popup menu as this: html

View menuItemView = findViewById(R.id.menu_dropdown); // SAME ID AS MENU ID

PopupMenu popup = new PopupMenu(MainActivity.this, menuItemView);

android.view.Menu menu = popup.getMenu();
menu.add("test").setOnMenuItemClickListener(new android.view.MenuItem.OnMenuItemClickListener() {
        @Override
        public boolean onMenuItemClick(android.view.MenuItem item) {
            return true;
        }
    });
}

popup.show();

There are more usage availble here. java


Post by: Jalen Wang (轉載請註明出處)android

相關文章
相關標籤/搜索