ToolTips is an Open Source Android library that allows developers to easily display tooltips for views.
Getting It
Android ToolTips is available on Maven Central, so you can use the normal methods to acquire the library.
Gradle
compile 'com.ryanharter.android.tooltips:library:0.0.3'
Maven
<dependency>
<groupId>com.ryanharter.android.tooltips</groupId>
<artifactId>library</artifactId>
<version>0.0.3</version>
</dependency>
Usage
- Add a
com.ryanharter.android.tooltips.ToolTipLayout
view to your layout such that it fills the view view and overlays everything else. - Create
ToolTip
instances using the Builder
class. - Add the
ToolTip
s to your view.
Example
layout.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ryanharter.android.tooltips.sample.MyActivity">
<com.ryanharter.android.tooltips.ToolTipLayout
android:id="@+id/tooltip_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
Activity.java (or Fragment.java)
ToolTipLayout tipContainer = (ToolTipLayout) findViewById(R.id.tooltip_container);
ToolTip t = new Builder(myContext)
.anchor(myAnchorView)
.gravity(Gravity.TOP)
.color(Color.RED)
.pointerSize(POINTER_SIZE)
.contentView(contentView)
.build();
tipContainer.addTooltip(t);
Developed By
License
Copyright 2013 Ryan Harter
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.