我在 WindowManager 上添加了一个 customView
WindowManager mWm = (WindowManager)activity.getApplicationContext().getSystemService(Context.WINDOW_SERVICE);
mWm.addView(customView, mWl);
单击 customView 时,我将显示一个警报对话框。但是,alertDialog 显示在 customView 后面。
有什么方法可以在 WindowManager 上或在所有内容之前添加警报对话框?