Skip to content

Releases: douglasjunior/android-simple-tooltip

1.1.0

04 Apr 21:13
615e6fc
Compare
Choose a tag to compare

Add support for rounded corner (#114)

1.0.0

04 Apr 21:10
fb07e89
Compare
Choose a tag to compare

Added support for non-touch screens (#108)

1.0.0-rc.0

17 Oct 03:14
53d0c51
Compare
Choose a tag to compare
1.0.0-rc.0 Pre-release
Pre-release

Switch to AndroidX (#107)

0.2.3

14 Aug 11:19
29b60e7
Compare
Choose a tag to compare
Update build.gradle

0.2.2

01 Dec 18:07
Compare
Choose a tag to compare

Changes

  • Fixed dismiss on outside touch. #60

0.2.1

17 Jul 12:00
Compare
Choose a tag to compare

Changes

  • overlayMatchParent(boolean): Sets the behavior of the overlay view. Used for cases where the Overlay view can not be MATCH_PARENT. Like in a Dialog or DialogFragment. #46
  • Added extra check to prevent the bitmap from being null when drawing. #42
  • Updated gradle plugin.

0.2.0

07 Apr 12:45
Compare
Choose a tag to compare

Changes

  • focusable(boolean): Allowing the user to specify whether the Window will be focusable or not, in case that we have layouts with Input fields inside of the custom layouts we supply to the Tooltip. #35
  • highlightShape(int): Added options to draw rectangle highlight or oval highlight. #36
  • overlayOffset(float): Added option to configure overlay offset.
  • Removed R.dimen.simpletooltip_overlay_circle_offset and added R.dimen.simpletooltip_overlay_offset
  • Improve some docs.

0.1.3

17 Mar 12:35
Compare
Choose a tag to compare

Changes

  • Added extra check to avoid nullpointer in layoutlisteners (#22)

0.1.2

15 Aug 19:11
Compare
Choose a tag to compare

Changes

  • Added option to set animation padding by pixels or resId
  • Added check width and height of the view before generating the bitmap #6
  • Added option to Gravity.CENTER #14
  • Added arrowDirection option. Useful with Gravity.CENTER
  • Added option to set Text by resId
  • Removed all ViewTreeObserver.OnGlobalLayoutListener on dismiss to prevent NullPointerException #11

0.1.1

01 Jun 17:06
Compare
Choose a tag to compare

Changes

  • Added option to set pixels or resId for Margin and Padding
  • Removed dependency of appcompat to compile and run with API 22 or below #3
  • Fixed bug for tooltip position and overlay inside a Dialog
  • Fixed bug on close a Dialog without close the Tooltip
  • Fixed animation without arrow
  • Fixed bug when touching inside tooltip area
  • Small changes to prevent memory leak
  • Added some docs