我想创建一个弹出窗口,例如在 Go SMS Pro 中收到的 SMS 通知(在所有活动之上,也可点击)。我一直在尝试使用 Popup Windows,但似乎没有任何效果。不知何故,我无法控制单击该“弹出窗口”的时间。
先感谢您。
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
800, 800,
WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
PixelFormat.TRANSLUCENT);
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View myView = inflater.inflate(R.layout.custom_toast, null);
myView.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View my, MotionEvent event) {
testeDisplay();
return false;
}
});
wm.addView(myView, params);