Last active
September 28, 2022 04:59
-
-
Save alexjlockwood/e70717b7cb9c040899f08b58860ea3fb to your computer and use it in GitHub Desktop.
VectorDrawable definitions for play, pause, and record icons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<vector | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:width="48dp" | |
android:height="48dp" | |
android:viewportHeight="12" | |
android:viewportWidth="12"> | |
<!-- This path draws two green stroked vertical pause bars. --> | |
<path | |
android:pathData="M 4,2.5 L 4,9.5 M 8,2.5 L 8,9.5" | |
android:strokeColor="#0F9D58" | |
android:strokeWidth="2"/> | |
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<vector | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:width="48dp" | |
android:height="48dp" | |
android:viewportHeight="12" | |
android:viewportWidth="12"> | |
<!-- This path draws an orange triangular play icon. --> | |
<path | |
android:fillColor="#FF9800" | |
android:pathData="M 4,2.5 L 4,9.5 L 9.5,6 Z"/> | |
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<vector | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:width="48dp" | |
android:height="48dp" | |
android:viewportHeight="12" | |
android:viewportWidth="12"> | |
<!-- This path draws a red circle. --> | |
<path | |
android:fillColor="#DB4437" | |
android:pathData="M 2,6 C 2,3.8 3.8,2 6,2 C 8.2,2 10,3.8 10,6 C 10,8.2 8.2,10 6,10 C 3.8,10 2,8.2 2,6"/> | |
</vector> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment