Spotlight
Spotlight copied to clipboard
can i show every time when activity call?
now its showing only one time but i need to show it every time when activity call. is it possible?
The usageId is a unique String. So you can create a unique ID programatically every time, for example:
String usageId = new Date().toString();
@pratikcouragedigital , It is possible by the way which @cuiti has shown. However, I added a method showAlways(boolean) into SpotlightView.Builder for ease. When you pass true, it will show every time you open that same screen.
@dhavalwooplr this method is added...