android overflow menu in bottom bar

前端 未结 3 1649
野的像风
野的像风 2021-01-07 10:08

I\'m trying to get the overflow button from the action bar to show up in the bottom, next to the back/home/other-apps buttons. I was assuming this would be the case if I tur

3条回答
  •  再見小時候
    2021-01-07 11:01

    Did you try this code for creating option menu?

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

提交回复
热议问题