Use text color as fab icon color

This commit is contained in:
Naveen 2023-01-16 18:09:58 +05:30
parent fce31b7bcf
commit b68c672be6
1 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import android.annotation.SuppressLint
import android.app.Activity
import android.content.ActivityNotFoundException
import android.content.Intent
import android.content.res.ColorStateList
import android.graphics.BitmapFactory
import android.graphics.drawable.LayerDrawable
import android.media.MediaMetadataRetriever
@ -651,8 +652,8 @@ class ThreadActivity : SimpleActivity() {
scroll_to_bottom_fab.setOnClickListener {
scrollToBottom()
}
val fabColor = getBottomBarColor()
scroll_to_bottom_fab.setColors(textColor, fabColor, fabColor)
scroll_to_bottom_fab.backgroundTintList = ColorStateList.valueOf(getBottomBarColor())
scroll_to_bottom_fab.applyColorFilter(textColor)
setupScheduleSendUi()
}