Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pajatopmr/7b24d4e6d210b5e896a2 to your computer and use it in GitHub Desktop.
Save pajatopmr/7b24d4e6d210b5e896a2 to your computer and use it in GitHub Desktop.
Shows how to customize the Brightcove media controller seek bar's progress colors.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Define the new colors. -->
<color name="blue_semi_trans">#730000ff</color>
<color name="magenta_semi_trans">#4DFF00FF</color>
<!-- This file will be found at ...res/values/colors.xml -->
<!-- Change the progress colors to magenta/black/blue, all transparent. -->
<color name="bmc_seekbar_primary">@color/magenta_semi_trans</color>
<color name="bmc_seekbar_secondary">@color/black_semi_trans</color>
<color name="bmc_seekbar_track">@color/blue_semi_trans</color>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment