I got this code:
mBoundService = ((LocalService.LocalBinder)service).getService();
Could some nice guy explain what does this mean :((LocalService.LocalBinder)service)
And Could somebody please give some other example just like ((A)B).
Thank you.
you have a variable (service) and you convert it to type (LocalService.LocalBinder) then you get the service
this means that:
try this it may help you
Reference
Example