Android Как открыть пункт меню параметров после нажатия кнопки? - PullRequest
0 голосов
/ 02 мая 2019

Я использую такие пункты меню.

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/menu_overflow"
        android:enabled="true"
        android:icon="@drawable/ic_menu_moreoverflow_mtrl_alpha"
        android:title=""
        app:showAsAction="ifRoom">
        <menu>
            <item
                android:id="@+id/action_city"
                android:icon="@drawable/ic_change_city"
                android:title="Change City"
                app:showAsAction="never" />
            <item
                android:id="@+id/action_language"
                android:icon="@drawable/ic_change_language"
                android:title="Change Language"
                app:showAsAction="never" />
            <item
                android:id="@+id/action_change_theme"
                android:icon="@drawable/ic_change_theme"
                android:title="Change Theme"
                app:showAsAction="never" />
        </menu>
    </item>

</menu>

Теперь Как я могу развернуть пункт меню -> menu_overflow программно после нажатия кнопки?

Мой код:

            activity.openOptionsMenu();
            ---------
            toolbar.showOverflowMenu();
            ---------
            menu_overflow.expandActionView();
            ---------
            menu_overflow.getSubMenu().getItem().expandActionView();

Но приведенные выше коды не работают.

Вот как выглядит дизайн.enter image description here

Ответы [ 2 ]

0 голосов
/ 02 мая 2019

Попробуйте это

YourActivity.this.openOptionsMenu ();

0 голосов
/ 02 мая 2019
          Create one xml file names as menu_main. xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"  
xmlns:app="http://schemas.android.com/apk/res-auto"  
xmlns:tools="http://schemas.android.com/tools"  
tools:context="example.javatpoint.com.optionmenu.MainActivity">  

<item  android:id="@+id/item1"  
    android:title="Item 1"
    android:icon="@drawable/ic_action_accept" />  
<item  android:id="@+id/item2"  
    android:title="Item 2"/>  
<item  android:id="@+id/item3"  
    android:title="Item 3"  
    app:showAsAction="withText"/>  
  </menu>  



       Then add these code in your Activity :


@Override  
public boolean onCreateOptionsMenu(Menu menu) {  
    // Inflate the menu; this adds items to the action bar if it is present.  
    getMenuInflater().inflate(R.menu.menu_main, menu);  
    return true;  
}  



@Override  
public boolean onOptionsItemSelected(MenuItem item) {  
   int id = item.getItemId();  
    switch (id){  
        case R.id.item1:  
            Toast.makeText(getApplicationContext(),"Item 
             Selected",Toast.LENGTH_LONG).show();  
            return true;  
        case R.id.item2:  
            Toast.makeText(getApplicationContext(),"Item 2 
     Selected",Toast.LENGTH_LONG).show();  
            return true;  
        case R.id.item3:  
            Toast.makeText(getApplicationContext(),"Item 3 
            Selected",Toast.LENGTH_LONG).show();  
            return true;  
        default:  
            return super.onOptionsItemSelected(item);  
             }  
                 }  
...