Nishant
Nishant

Reputation: 111

How to change color in the subtitle dialog of Chromecast android sender SDK?

I would like to change the color of options provided in subtitle selection dialog of cast sender SDK.

I have tried bunch of different things like,

<item name="android:textColorPrimary">@color/white100</item>
<item name="android:colorForeground">@color/white100</item>
<item name="android:textColor">@color/white100</item>
<item name="textColorAlertDialogListItem">@color/white100</item>
<item name="android:textColorAlertDialogListItem">@color/white100</item>

None of them worked...

Any idea what I should I do ?

Chromecast Subtitle Selection View

Upvotes: 0

Views: 370

Answers (1)

Nikola Djokic
Nikola Djokic

Reputation: 113

I was struggling with this and even posted a bounty for this, but at the end figured out that I had to override

cast_tracks_chooser_dialog_layout.xml

and

cast_tracks_chooser_dialog_row_layout.xml

in order to customise them properly

Upvotes: 0

Related Questions