I have a problem with cast SDK V3 for Android. I can't find and setup callback for MediaRouteButton, when it becomes visible (detects chromecast device). Thanks in advance!
Callback for MediaRouteButton detect devices
1.7k Views Asked by MSerg At
2
There are 2 best solutions below
0

I had exactly the same problem
I set it first : CastButtonFactory.setUpMediaRouteButton(nContext, nCastButton);
Then the addCastStateListener on CastContext;
The problem was there were not enough time for the CastButtonFactory to recognize the chromecast in my network. So the listener in the first place shoot me with "no device"
The fix was to add addSessionManagerListener on SessionManager and only on onSessionStarted or onSessionResumed to start setting the addCastStateListener on CastContext
You have a few options and you need to experiment to see which one fits your case:
You can use
CastContext
to register aCastStateListener
. This listener provides information on the state of cast, one of them being "no cast device available", for example, so you can see when a cast device becomes available.You can use
DiscoveryManagerListener
which will inform you when the availability of cast device changes.When you use
CastButtonFactory
to add your cast button usingsetUpMediaRouteButton
, you get aMenuItem
back. You can then monitor the visibility of that menu item yourself.