Reputation: 111
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 ?
Upvotes: 0
Views: 370
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