mirror of
https://github.com/SimpleMobileTools/Simple-Voice-Recorder.git
synced 2025-06-05 21:59:31 +02:00
updating the Microphone vector icon, make it rounder
This commit is contained in:
@ -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())
|
||||
}
|
||||
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user