PopupWindow
单击菜单项时打开一个。现在我在不同的设备上测试了我的应用程序并发现它在 Android 2.3.3、4.0.3、4.0.4 中运行不佳(在 4.2.2 中运行良好)
LayoutInflater inflaterSettings = LayoutInflater.from(context);
final LinearLayout llSettings = (LinearLayout) inflaterSettings.inflate(R.layout.actionbar_menu_settings_popup, null);
...
if (popUp != null && popUp.isShowing())
popUp.dismiss();
else if (popUp == null)
popUp = new PopupWindow(context);
popUp.setContentView(ll);
ll.post(new Runnable()
{
@Override
public void run()
{
Log.i("MainActivity#onOptionsItemSelected#run", "start run");
popUp.showAtLocation(ll, Gravity.CENTER, 0, 0);
int width = getResources().getDisplayMetrics().widthPixels;
int height = getResources().getDisplayMetrics().heightPixels;
width = (int) (width * 0.9);
height = (int) (height * 0.9);
popUp.update(width, height);
Log.i("MainActivity#onOptionsItemSelected#run", "end run");
}
});
Log.i("MainActivity#onOptionsItemSelected", "popup opened");
我想知道,因为它不会引发任何错误。如果我单击设备上的菜单按钮,然后单击应打开弹出窗口的项目,则菜单(显示项目)将关闭,但不会显示弹出窗口。如果我之后第二次单击菜单按钮,将执行 run 方法并打开弹出窗口。
什么原因?如何操作在早期 Android 版本中也能正常工作的代码?