Android ToolTips Play Store Demo
ToolTips is an Open Source Android library that allows developers to easily display tooltips for views.
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>
- 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 theBuilder
class. - Add the
ToolTip
s to your view.
<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">
<!-- Layout elements go here -->
<!-- Add the ToolTipLayout to your view, ensuring it's at the end -->
<!-- of the FrameLayout (or RelativeLayout) so it overlays other -->
<!-- views. -->
<com.ryanharter.android.tooltips.ToolTipLayout
android:id="@+id/tooltip_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
// Get the tooltip layout
ToolTipLayout tipContainer = (ToolTipLayout) findViewById(R.id.tooltip_container);
// Create a content view however you'd like
// ...
// Create a ToolTip using the Builder class
ToolTip t = new Builder(myContext)
.anchor(myAnchorView) // The view to which the ToolTip should be anchored
.gravity(Gravity.TOP) // The location of the view in relation to the anchor (LEFT, RIGHT, TOP, BOTTOM)
.color(Color.RED) // The color of the pointer arrow
.pointerSize(POINTER_SIZE) // The size of the pointer
.contentView(contentView) // The actual contents of the ToolTip
.build();
// Add the ToolTip to the view, using the default animations
tipContainer.addTooltip(t);
- Ryan Harter
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.