mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-13 15:02:05 +02:00
fix #211, use the note title as the subject at Share
This commit is contained in:
parent
c822645240
commit
c9becb9359
@ -566,7 +566,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
||||
val shareTitle = res.getString(R.string.share_via)
|
||||
Intent().apply {
|
||||
action = Intent.ACTION_SEND
|
||||
putExtra(Intent.EXTRA_SUBJECT, res.getString(R.string.simple_note))
|
||||
putExtra(Intent.EXTRA_SUBJECT, mCurrentNote.title)
|
||||
putExtra(Intent.EXTRA_TEXT, text)
|
||||
type = "text/plain"
|
||||
startActivity(Intent.createChooser(this, shareTitle))
|
||||
|
Loading…
x
Reference in New Issue
Block a user