Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Craig M.21
11 years agoNew member | Level 2
Dropbox should respond to Android Intent.ACTION_SEND
My android app uses the code below to allow users to back up an important file. A number of applications, including Google Drive, appear as suitable services to handle the file, but Dropbox does not ...
Jonathan M.32
10 years agoNew member | Level 1
Hey, same deal here with our app FlipaClip on Android. I'm not sure who is here DropBox dev but I assume Antonio? If that's the case version 10.2? I see on GooglePlay 8.2.4.
We are using:
public static void share (Context context, String subject, String message, String title, Uri data, String mime)
{
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
// Add data to the intent, the receiving app will decide what to do with it.
if (null != subject)
{
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
}
if (null != message)
{
intent.putExtra(Intent.EXTRA_TEXT, message);
}
intent.putExtra(Intent.EXTRA_TITLE, title);
intent.setType(mime);
intent.putExtra(Intent.EXTRA_STREAM, data);
Intent newShareIntent = Intent.createChooser(intent, "Share with");
newShareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newShareIntent);
}
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!