You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.7 KiB
75 lines
2.7 KiB
/*
|
|
* This file is part of FYReader.
|
|
* FYReader is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* FYReader is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with FYReader. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright (C) 2020 - 2022 fengyuecanzhu
|
|
*/
|
|
|
|
package com.kongzue.dialogx.util;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.graphics.PixelFormat;
|
|
import android.os.Build;
|
|
import android.util.Log;
|
|
import android.view.Gravity;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.view.WindowManager;
|
|
import android.widget.Toast;
|
|
|
|
import com.kongzue.dialogx.R;
|
|
import com.kongzue.dialogx.interfaces.BaseDialog;
|
|
|
|
import static android.view.WindowManager.LayoutParams.*;
|
|
|
|
/**
|
|
* @author: Kongzue
|
|
* @github: https://github.com/kongzue/
|
|
* @homepage: http://kongzue.com/
|
|
* @mail: myzcxhh@live.cn
|
|
* @createTime: 2021/4/29 16:02
|
|
*/
|
|
public class WindowUtil {
|
|
|
|
public static void show(Activity activity, View dialogView, boolean touchEnable) {
|
|
WindowManager manager = (WindowManager) activity.getSystemService(Context.WINDOW_SERVICE);
|
|
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
|
|
|
|
layoutParams.gravity = Gravity.CENTER_VERTICAL;
|
|
layoutParams.format = PixelFormat.TRANSPARENT;
|
|
layoutParams.type = TYPE_APPLICATION_ATTACHED_DIALOG;
|
|
layoutParams.flags = FLAG_FULLSCREEN |
|
|
FLAG_TRANSLUCENT_STATUS |
|
|
FLAG_TRANSLUCENT_NAVIGATION |
|
|
FLAG_LAYOUT_IN_SCREEN
|
|
;
|
|
if (!touchEnable) {
|
|
layoutParams.flags = layoutParams.flags | FLAG_NOT_FOCUSABLE;
|
|
}
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
|
layoutParams.layoutInDisplayCutoutMode = LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
|
|
}
|
|
|
|
manager.addView(dialogView, layoutParams);
|
|
}
|
|
|
|
public static void dismiss(View dialogView) {
|
|
BaseDialog baseDialog = (BaseDialog) dialogView.getTag();
|
|
if (baseDialog != null && baseDialog.getActivity() != null) {
|
|
WindowManager manager = (WindowManager) baseDialog.getActivity().getSystemService(Context.WINDOW_SERVICE);
|
|
manager.removeViewImmediate(dialogView);
|
|
}
|
|
}
|
|
}
|
|
|