Add Share app option inside app
See original GitHub issueSummary:
There should be an option to share the app.
Steps to reproduce:
- Add option to share in navigation drawer.
- On Click of share option -
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "sharetext");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getString(R.string.share)));
Expected behavior: There should be an option to share the app.
Observed behavior: There is no option to share the app.
Commons app version: 2.6.7
Issue Analytics
- State:
- Created 6 years ago
- Comments:21 (13 by maintainers)
Top Results From Across the Web
How to Customize the Share Menu on Your iPhone or Mac
Open the Share menu using any app on your iPhone. · The middle row shows all of the apps that you can share...
Read more >Adding app's to share sheet (suggestions) - Apple Community
As you have already noticed, the Share Sheet has options and then it lets you further customize it by tapping on MORE. But...
Read more >How to Add to & Edit Sharing Menu Options on iPhone & iPad
In this menu, you'll be able to add app-specific actions and other shortcuts to the Favorites section of the Share Sheet. Simply tap...
Read more >How to Customize the Apps in Your iOS Share Sheet
1. Launch an app containing shareable content, such as Safari, Photos, or the Files app. 2. View some content in the app, then...
Read more >How To Set Up The Share Settings For Your App
The Share Settings allow you to add your app's Store Listing Links to the iOS App Store and Google Play Store once your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Keeping the share button in the top bar (
Toolbar
) of theAbout
page also seems to be a good idea to me. That way it won’t get lost in the already overcrowdedAbout
page.I definitely think it should NOT be in the navigation drawer the way the app in the screenshot does it. Feels a lot like feature bloat and users might get annoyed, since it isn’t really something they would use often.
However, I think it could be nice to have a little “Share” icon in About. Perhaps next to the FB etc icons?