如何通过单击按钮打开选项菜单? 以下代码不起作用:
openOptionsMenu();
由于
答案 0 :(得分:0)
我的问题解决了。我使用<div class="container-lg">
<button class="container-sm"></button>
</div>
代替 Options Menu
。
答案 1 :(得分:0)
我找到的唯一方法是模拟KeyEvent。这使选项菜单出现
BaseInputConnection mInputConnection = new BaseInputConnection( findViewById(R.id.main_content), true);
KeyEvent kd = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MENU);
KeyEvent ku = new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MENU);
mInputConnection.sendKeyEvent(kd);
mInputConnection.sendKeyEvent(ku);