Android Showcase View how to use?

后端 未结 5 948
迷失自我
迷失自我 2020-12-06 08:56

Well For Showcase View

\"enter

I using this:

https://github.com/amlcu

5条回答
  •  独厮守ぢ
    2020-12-06 09:12

    I usually use another library for showcase views. It creates bubbles instead of concentric circles but it works really well. Maybe it is also useful for your requirements and with this one you don't have importing problems.

    You just have to add 'implementation 'com.elconfidencial.bubbleshowcase:bubbleshowcase:1.3.0' in your build.gradle file of your app and synchronize your project.

    It works similar to ShowCaseView library:

    BubbleShowCaseBuilder(this) //Activity instance
                .title("foo") //Any title for the bubble view
                .targetView(view) //View to point out
                .show() //Display the ShowCase
    

    Source https://github.com/ECLaboratorio/BubbleShowCase-Android

提交回复
热议问题