Set placeholder text color

This commit is contained in:
Naveen 2023-10-05 15:45:21 +05:30
parent 96749ac330
commit 5b3b58aedc
No known key found for this signature in database
GPG Key ID: 0E155DAD31671DA3
1 changed files with 1 additions and 0 deletions

View File

@ -146,6 +146,7 @@ class ArchivedConversationsActivity : SimpleActivity() {
private fun showOrHidePlaceholder(show: Boolean) {
binding.conversationsFastscroller.beGoneIf(show)
binding.noConversationsPlaceholder.beVisibleIf(show)
binding.noConversationsPlaceholder.setTextColor(getProperTextColor())
binding.noConversationsPlaceholder.text = getString(R.string.no_archived_conversations)
}