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

GoogleApiClient Map fragment turns unclickable upon using its view on BubbleShowCaseBuilder #51

Open vishshaz opened 3 years ago

vishshaz commented 3 years ago

I have a use case where BubbleShowCaseBuilder is used on GoogleApiClient map view on Android.

The usage is as follows:

BubbleShowCaseBuilder googleMapBuilder = new BubbleShowCaseBuilder(this).arrowPosition(BubbleShowCase.ArrowPosition.BOTTOM)
                .title("Long press the map to change the location.").targetView(findViewById(R.id.map));

new BubbleShowCaseSequence()
                .addShowCase(googleMapBuilder)
                .show();

R.id.map is the map fragment's Id. The code above is run inside an activity as defined below inside the onMapReady() overridden method:

public class MapsActivity extends FragmentActivity {}

After the above piece of code runs, the map view becomes unclickable. Am I missing something here? Is it even possible to use BubbleShowCase on a map fragment?