adding an Add Attachment button at the sending screen

This commit is contained in:
tibbi 2020-04-12 11:41:52 +02:00
parent 8263327f70
commit ff1edd12b6
2 changed files with 19 additions and 2 deletions

View file

@ -129,6 +129,7 @@ class ThreadActivity : SimpleActivity() {
thread_type_message.setColors(config.textColor, config.primaryColor, config.backgroundColor)
thread_send_message.applyColorFilter(config.textColor)
confirm_manage_contacts.applyColorFilter(config.textColor)
thread_add_attachment.applyColorFilter(config.textColor)
thread_send_message.setOnClickListener {
val msg = thread_type_message.value
@ -171,6 +172,9 @@ class ThreadActivity : SimpleActivity() {
}
thread_type_message.setText(intent.getStringExtra(THREAD_TEXT))
thread_add_attachment.setOnClickListener {
}
}
private fun blockNumber() {