Tooltip A fluent tooltip for Android Oct 14, 2018 1 min read ViewTooltip A fluent tooltip for Android. ViewTooltip ViewTooltip .on(this, editText) .autoHide(true, 1000) .corner(30) .position(ViewTooltip.Position.RIGHT) .text("Right") .show(); Java Download dependencies { compile 'com.github.florent37:viewtooltip:(last version)' } Java Methods ViewTooltip .on(this, editText) .autoHide(true / false, 1000) .clickToHide(true / false) .align(START / CENTER) .position(TOP / LEFT / RIGHT / BOTTOM) .text("The text") .textColor(Color.WHITE) .color(Color.BLACK) .corner(10) .arrowWidth(15) .arrowHeight(15) .distanceWithView(0) //change the opening animation .animation(new ViewTooltip.TooltipAnimation(){...}) //listeners .onDisplay(new ViewTooltip.ListenerDisplay() { @Override public void onDisplay(View view) { } }) .onHide(new ViewTooltip.ListenerHide() { @Override public void onHide(View view) { } }) .show(); Java Prevent view to not be outside screen ViewTooltip will not allow to be outside of screen, it will automatically adjust his size GitHub Tooltip
Tooltip Highly configurable tooltip rendering so they always fit on the screen Highly configurable tooltip rendering so they always fit on the screen. 19 November 2022
Tooltip Showcase will highlight the view and show tooltip on it Showcase will highlight the view and show tooltip on it. 14 June 2022
Tooltip Modernized and sophisticated tooltips, fully customizable with an arrow and animations on Android Modernized and sophisticated tooltips, fully customizable with an arrow and animations on Android 27 May 2022