1

Does Android have default play/pause control icons?

I found Where can I find Android's default icons? , there are many folders here. I searched for "play", "pause" in file names and nothing showed up.

Where can I find Android's default playback control icons?

quantumpotato
  • 9,637
  • 14
  • 70
  • 146

2 Answers2

2

You can find google's material design icons here, in av folder you should find play and pause.

If you're using Android Studio and you're ok with vector drawables, right click on drawable folder -> new -> vector assets -> select "material icon" -> click on "icon" -> choose the one you want, should be looking again in "av" folder

If by chance you're using ExoPlayer, they distribute icons in their ui module

lelloman
  • 13,883
  • 5
  • 63
  • 85
2

System default icons listed: https://developer.android.com/reference/android/R.drawable.html

And call the resource in this way: android.R.drawable.ic_media_play or .ic_media_pause, enjoy autocomplete

Dario
  • 123
  • 10