remove share intent SUBJECT
This commit is contained in:
parent
989feec2ce
commit
1945fa6317
@ -1232,7 +1232,7 @@ public class MainActivity extends FragmentActivity implements OnlineServices {
|
||||
Intent intent = new Intent(Intent.ACTION_SEND);
|
||||
|
||||
intent.setType("text/plain");
|
||||
intent.putExtra(Intent.EXTRA_SUBJECT, article.title);
|
||||
//intent.putExtra(Intent.EXTRA_SUBJECT, article.title);
|
||||
intent.putExtra(Intent.EXTRA_TEXT, article.title + " " + article.link);
|
||||
|
||||
return intent;
|
||||
|
@ -439,7 +439,7 @@ public class OfflineActivity extends FragmentActivity implements
|
||||
Intent intent = new Intent(Intent.ACTION_SEND);
|
||||
|
||||
intent.setType("text/plain");
|
||||
intent.putExtra(Intent.EXTRA_SUBJECT, title);
|
||||
//intent.putExtra(Intent.EXTRA_SUBJECT, title);
|
||||
intent.putExtra(Intent.EXTRA_TEXT, title + " " + link);
|
||||
|
||||
return intent;
|
||||
|
Loading…
Reference in New Issue
Block a user