updating the Microphone vector icon, make it rounder

This commit is contained in:
tibbi
2020-03-30 19:24:39 +02:00
parent beac62290a
commit afb76aa3e2
5 changed files with 33 additions and 12 deletions

View File

@ -137,7 +137,7 @@ class MainActivity : SimpleActivity() {
}
private fun getToggleButtonIcon(): Drawable {
val drawable = if (isRecording) R.drawable.ic_stop_vector else R.drawable.ic_mic_vector
val drawable = if (isRecording) R.drawable.ic_stop_vector else R.drawable.ic_microphone_vector
return resources.getColoredDrawableWithColor(drawable, getFABIconColor())
}

View File

@ -174,7 +174,7 @@ class RecorderService : Service() {
val builder = NotificationCompat.Builder(this)
.setContentTitle(label)
.setContentText(getString(R.string.recording))
.setSmallIcon(R.drawable.ic_mic_vector)
.setSmallIcon(R.drawable.ic_microphone_vector)
.setContentIntent(getOpenAppIntent())
.setPriority(Notification.PRIORITY_DEFAULT)
.setSound(null)