Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8306647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:22:22+00:00 2026-06-08T18:22:22+00:00

in the iOS world data can be exchanged between applications through the use of

  • 0

in the iOS world data can be exchanged between applications through the use of Open Protocol. For example if I have an e-mail with a pdf attachment I can open it into PDFExpert, even if the apps runs on a SandBox and they don’t have share file system.

In case of Android I noticed that such a procedure is different, for example I can save a document into the file system let’s say /mnt/Apps_Name and then I can reopen that document in an other apps.

Is there a way to have the user to experience data/documents exchanging between apps like in the iOS World? Do you have any example? Some references to the official documentation? Do they need some Bonjour or Zero Conf implementation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:22:23+00:00Added an answer on June 8, 2026 at 6:22 pm

    Maybe the Intent approach is what you are looking for. By setting an action to an Intent, let’s say for example, ACTION_VIEW, you set the corresponding data in the Intent (i.e. a pdf file), and the system determines which apps are capable of showing that information. If more than one app are capable, usually a dialog promps to let the user decide the app.

    View PDF example:

    Uri path = Uri.fromFile(file);
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(path, "application/pdf");
    startActivity(intent);
    

    Intents feature is one of my favourites in Android Development. See for example how easy is to share any file/text/image/… without the pain of implementing any Oauth/Oauth2….

    Intent intent = new Intent(android.content.Intent.ACTION_SEND);
    intent.setType("text/plain");
    String toShare = "This is the text to share";
    // You can add extras
    intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
    
    // Start intent with choose prompt
    startActivity(Intent.createChooser(intent, "Share via"));
    

    Result:

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to share on-disk data between iOS applications, or are they truly
I would like to know if applications (iOS, Android or Blackberry) have access to
I have an iPhone (iOS) app that keeps data in a local SQLite database
I want to make use of JSON in iOS, but my JSON data files
I'm working on an iOS app. I have a Core Data database with a
I currently have an iOS app that can 'bootstrap' it's database from a bunch
I have an iOS application where I use coreData to store my documents. They
How can I consume this JSon data in iOS 5 ({assets = ( {
I'm developing an iOS app using Core Data. And I have a Log entity
I would like to transimt speech data of a voice call in a iOS

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.