CustomPopwindow icon indicating copy to clipboard operation
CustomPopwindow copied to clipboard

在dissmiss 中加个方法

Open Kotlin2022 opened this issue 8 years ago • 1 comments
trafficstars

if (mWindow != null) {
        WindowManager.LayoutParams params = mWindow.getAttributes();
        params.alpha = 1.0f;
        mWindow.setAttributes(params);
       //一定要清除Flags 不然使用DialogFragment会有冲突~
        mWindow.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
    }

Kotlin2022 avatar Aug 11 '17 08:08 Kotlin2022

收到,回去测试之后添加

pinguo-zhouwei avatar Aug 11 '17 08:08 pinguo-zhouwei