ECLaboratorio / BubbleShowCase-Android

BubbleShowCase is a framework that let you to use informative bubbles to help your users pointing out different App features.
MIT License
603 stars 90 forks source link

Sequence does not continue, when no targetview is set (Fragment) #11

Closed wezley98 closed 6 years ago

wezley98 commented 6 years ago

Trying to use sequence and the second shows briefly in top left corner and disappears.

           BubbleShowCaseBuilder(requireActivity()).title(getString(R.string.showcase_fab_title)).description(
                getString(R.string.showcase_fab_desc)
            ).arrowPosition(BubbleShowCase.ArrowPosition.RIGHT).backgroundColor(
                ContextCompat.getColor(
                    requireContext(), R.color.colorAccent
                )
            ).highlightMode(BubbleShowCase.HighlightMode.VIEW_SURFACE).targetView(
                requireActivity().findViewById(R.id.show_fab)
            )
        )
            .addShowCase(
                BubbleShowCaseBuilder(requireActivity()).title(getString(R.string.showlist_showcase_text)).backgroundColor(
                    ContextCompat.getColor(
                        requireContext(), R.color.colorAccent
                    )
                )
            )
            .show()
JorgeCM commented 6 years ago

Hi wezley98,

This bug has been fixed in 1.3.0 library version. Thank you for pointing that out. :)

implementation 'com.elconfidencial.bubbleshowcase:bubbleshowcase:1.3.0'