How do I change the style of the MediaRouteButton in the ActionBar?

后端 未结 6 390
一向
一向 2020-12-03 21:58

I realize I\'m probably doing something fundamentally wrong with styles and themes but I\'m still a bit of an Android newbie so please excuse my ignorance. I\'m trying to c

6条回答
  •  伪装坚强ぢ
    2020-12-03 22:13

    You can change it easily now with your custom drawable. Just call this method on your cast button.

    mediaRouteButton = (MediaRouteButton) findViewById(R.id.media_route_button);
    mediaRouteButton.setRemoteIndicatorDrawable(yourDrawable);
    

提交回复
热议问题