Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create guided tour in an Android app

Tags:

android

I want to create interactive tour in my app like this:

enter image description here

How can i achieve it? Do you know a library to make it easier?

like image 501
tsil Avatar asked Apr 21 '13 09:04

tsil


People also ask

What is tourist guide application?

The tourist guide application enables users to locate distinct places to visit. They get a detailed description of the site along with the nearby places that they can see. Using this application, the user can select a location to see and get all information regarding that place.


2 Answers

ShowcaseView probably is your best option. It's designed to highlight and showcase specific parts of apps to the user with a distinctive and attractive overlay. The library is great for pointing out points of interest of users, gestures, or obscure but useful items.

The library is based on the 'Cling' View found in the Launcher on ICS and Jelly Bean, but extended to be easier to use.

GitHub repository ShowcaseView

enter image description here

like image 131
Eric Yuan Avatar answered Sep 19 '22 15:09

Eric Yuan


you can check this one link. Here Roman Nurik created a wizard which can be used as your purpose by some modification. You can see the source here.

But I think it is better to create your own guided tour. Create it using Fragments and ViewPager.

like image 28
stinepike Avatar answered Sep 18 '22 15:09

stinepike