meshtastic#73 'Resend Button' on message selection

This commit is contained in:
wkawecki
2022-04-12 17:00:49 +02:00
parent 1ca1642cb9
commit 6f9f2c4b04
5 changed files with 24 additions and 0 deletions

View File

@@ -305,6 +305,14 @@ class MessagesFragment : Fragment(), Logging {
actionMode?.title = selectedList.size.toString()
notifyDataSetChanged()
}
R.id.resendButton -> {
debug("User clicked resendButton")
var resendText:String = ""
selectedList.forEach {
resendText = resendText + it.text + System.lineSeparator()
binding.messageInputText.setText(resendText)
}
}
}
return true
}