An open API service indexing awesome lists of open source software.

https://github.com/naxam/targettooltip-android-binding

Xamarin Android Library - TargetToolTip for Android
https://github.com/naxam/targettooltip-android-binding

target-tooltip-library targettooltip xamarin-android-binding

Last synced: 8 months ago
JSON representation

Xamarin Android Library - TargetToolTip for Android

Awesome Lists containing this project

README

          

Android Tooltip - Xamarin Android Binding Library
======================

Create Toast like tooltips, physical targets can be specified, or even points on screen.
Many additional features and customizations. Just look at the samples Activities.

Installation
===

Install-Package Naxam.TargetToolTip.Droid

Usage
===

Tooltip.make(this,
new Builder(101)
.anchor(aView, Gravity.BOTTOM)
.closePolicy(new ClosePolicy()
.insidePolicy(true, false)
.outsidePolicy(true, false), 3000)
.activateDelay(800)
.showDelay(300)
.text(R.string.hello_world)
.maxWidth(500)
.withArrow(true)
.withOverlay(true)
.typeface(mYourCustomFont)
.floatingAnimation(AnimationBuilder.DEFAULT)
.build()
).show();

See the inner [Builder][1] class for the complete set of options

Customization
===

Tooltip style can be customized in your style object:














And this is the style for the overlay touch:







then pass the style in the Builder method **withStyleId(int resId)**

Video
===
[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/QitX9bnsnP4/0.jpg)](http://www.youtube.com/watch?v=QitX9bnsnP4)

Screenshots
===
![Screen shot](https://github.com/sephiroth74/android-target-tooltip/raw/master/screenshots/image01.png)