3

Does Android have an equivalent built in control like UIActivityViewController on iOS? Are there any open source equivalents?

jjxtra
  • 20,415
  • 16
  • 100
  • 140

1 Answers1

2

Android is more based around Intent resolution so if more than one Activity on the device can handle an Intent for which you have set an Action and a Category, Android will automatically offer a list of Activities to the user to choose how they want to handle your data. There may be other alternatives, but I just wanted to get this answer down so you can perhaps consider using the built in Android functionality.

SDJMcHattie
  • 1,690
  • 1
  • 15
  • 21