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/a3e565c96e1320ecc5b8 to your computer and use it in GitHub Desktop.
Save pajatopmr/a3e565c96e1320ecc5b8 to your computer and use it in GitHub Desktop.
Shows how to change a button face, in this case, the Rewind button.

There are at least three additional choices for a Rewind icon in the Font Awesome catalog:

  • Directional arrow left (fa-arrow-left)
  • Video Player backward (fa-backward)
  • Video Player step backward (fa-step-backward)

This Gist shows the code for setting up each one.

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Arrow Left Rewind</string>
<!-- Use the Font Awesome fa-arrowleft icon for the rewind button
face. -->
<string name="rewind">&#xf060;</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Backward Rewind</string>
<!-- Use the Font Awesome fa-backward icon for the rewind button
face. -->
<string name="rewind">&#xf04a;</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Step Backward Rewind</string>
<!-- Use the Font Awesome fa-stepbackward icon for the rewind
button face. -->
<string name="rewind">&#xf048;</string>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment