Skip to content
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #116 from recruit-lifestyle/develop
Browse files Browse the repository at this point in the history
Ver 2.4.4
  • Loading branch information
YoshihideSogawa authored Mar 28, 2019
2 parents bef16b9 + fe79cff commit 8a9a722
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Min Sdk Version : 14
}

dependencies {
implementation 'com.github.recruit-lifestyle:FloatingView:2.4.0'
implementation 'com.github.recruit-lifestyle:FloatingView:2.4.4'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,8 @@ class FloatingView extends FrameLayout implements ViewTreeObserver.OnPreDrawList
mParams.type = OVERLAY_TYPE;
mParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE |
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS |
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL |
WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
mParams.format = PixelFormat.TRANSLUCENT;
// 左下の座標を0とする
mParams.gravity = Gravity.LEFT | Gravity.BOTTOM;
Expand Down

0 comments on commit 8a9a722

Please sign in to comment.