2016-08-02 138 views

回答

0

我的問題解決了,我改用Options MenuPopup Menu我使用。

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); 
相關問題