Android Simple Tooltip Versions Save

A simple library based on PopupWindow to create Tooltips on Android. 💚

1.1.0

2 years ago

Add support for rounded corner (#114)

1.0.0

2 years ago

Added support for non-touch screens (#108)

1.0.0-rc.0

3 years ago

Switch to AndroidX (#107)

0.2.3

4 years ago

0.2.2

6 years ago

Changes

  • Fixed dismiss on outside touch. #60

0.2.1

6 years ago

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

7 years ago

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

7 years ago

Changes

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

0.1.2

7 years ago

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

7 years ago

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