Wilm0r/giggity

Conference hashtag for sharing on Twitter

zuphilip opened this issue · 2 comments

Would it be possible to save the conference hashtag and then use it for sharing via twitter? However, currently these text is using the whole abstract which will almost certainly be too many characters. Thus, one would also need to restrict this. Any hint where this is handled in the code?

Hm... I see that the description is added in the first line of these code

text += "\n" + item_.getDescriptionStripped();
t.putExtra(android.content.Intent.EXTRA_TEXT, text);
ctx_.startActivity(Intent.createChooser(t, "Share via"));

However, then the same t is used for all share via services in the last line above. I don't see how to tweak that such that different text with/without hashtag is used for different services. Any ideas?