Create guided tour in an Android app

前端 未结 3 2241
情歌与酒
情歌与酒 2020-12-13 04:47

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

\"enter

How can i achie

相关标签:
3条回答
  • 2020-12-13 05:14

    You could consider using this library in your application: Showcase View. It is based on the View that Android shows in ICS and JB when you start a fresh device for the first time / factory reset / flash, say CM 10 / 10.1. As also the app launcher when launched for the first time.

    EDIT: This is how it looks

    enter image description here

    And as pointed out by Warpzit in his comment, in theory (I haven't used is so far, but am really keen on using it soon), you could use the library with screenshots in a ViewPager.

    There is an Open Source project on Github called TweetLanes which uses a similar approach (minus the library mentioned above). You could download and give the source a look to see how the app implements. And as mentioned, it's Open Source. ;-)

    0 讨论(0)
  • 2020-12-13 05:34

    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

    0 讨论(0)
  • 2020-12-13 05:34

    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.

    0 讨论(0)
提交回复
热议问题