我如何知道在使用WindowManager添加之前是否正在显示视图?
我需要在本机Dialer中放置一个叠加层,但是有时将本机Dialer放在mi自定义视图上方,我通过使用WindowManager多次添加了元素来解决了此问题,但是有时该视图显示两次。

谢谢!!

private void callStartIncomingCallScreen(Context context, String incomingNumber) {
    startIncomingCallScreen(context, incomingNumber);

    Timer timer = new Timer();

    for (int i = 0; i < 2; i++) {
        timer.schedule(new StartIncomingCallScreenTimerTask(context, incomingNumber), 100 * i);
    }
}


class StartIncomingCallScreenTimerTask extends TimerTask {

    private Context context;
    private String incomingNumber;

    StartIncomingCallScreenTimerTask(Context context, String incomingNumber) {
        this.context = context;
        this.incomingNumber = incomingNumber;
    }

    public void run() {
        Intent intent = new Intent(context, IncomingCallGuiService.class);
        context.startService(intent);
    }
}


然后在IncomingCallGuiService中添加如下视图:

final LayoutParams params = new LayoutParams(
      LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT,
      LayoutParams.TYPE_SYSTEM_ALERT,
      LayoutParams.FLAG_NOT_FOCUSABLE | LayoutParams.FLAG_NOT_TOUCH_MODAL,
      PixelFormat.TRANSLUCENT);



WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
// add the overlay
wm.addView(view, params);

最佳答案

您可以使用您自己放大的视图进行检查。您可以使用view.isShown()进行检查。用windowManager.addView(yourView)添加视图时,调用isShown()时返回true。

希望对您有帮助。

07-26 05:09