Skip to content

0.0.50.beta20测试版本更新

Latest
Compare
Choose a tag to compare
@kongzue kongzue released this 09 Sep 12:20

0.0.50.beta20

  • BottomDialog 提供了对外暴露的 boxBody(对话框内容布局外层)实例;
  • WindowUtil 提供了额外自定义WindowManager.LayoutParams的接口:
WindowUtil.windowSettings = new WindowUtil.WindowSettings() {
    @Override
    public WindowManager.LayoutParams overrideWindowLayoutParamsInterface(Context context, View dialogView, WindowManager.LayoutParams originWindowLayoutParams) {
        //处理 originWindowLayoutParams...
        return originWindowLayoutParams;
    }
};
  • 修复Window模式下,多层Dialog触摸事件逐级向下层传递的问题;