You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
I have a use case where BubbleShowCaseBuilder is used on GoogleApiClient map view on Android.
The usage is as follows:
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?
The text was updated successfully, but these errors were encountered: