Click here to Skip to main content
15,860,972 members
Articles / Web Development / ASP.NET

Xamarin Forms: Share Media With Other Apps

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
6 Jan 2019CPOL1 min read 15.2K   346   3   1
This article will help you develop a Xamarin.Forms based app to share media files with other mobile applications.

Introduction

This article provides a solution to share media files from Xamarin.Forms mobile application with other mobile apps.

Background

Before proceeding with this article, please go through some basics of Xamarin.Forms, Dependency Service, Xamarin.Android and Xamarin.iOS. That will help you understand the flow of the project.

Using the Code

Here, we will be using two clients (Android and iOS). 

Xamarin.Portable

We'll be using DependencyService to have different implementations for different clients. Here is the interface used.

C#
public interface IShareImage
{
    Task Share(string url);
}

In your XAML page, add the following ToolBarItem with a Command associated:

C#
            var share = new ToolbarItem
            {
                Text = "Share",
                Command = new Command(async () =>
                {
                    try
                    {
                        await DependencyService.Get<IShareImage>().Share("Your Media Link");
                    }
                    catch (Exception ex)
                    {
                        Console.WriteLine(ex);
                        await DisplayAlert("Error", "Something went wrong. 
                                            Please try again later", "OK");
                    }
                })
            };

            ToolbarItems.Add(share);

Xamarin.Android

For Android Implementation, first we need to temporarily save the image on the device, and then we can share it using Intent. To get this flow to work, user needs to allow permissions for the app in the App Info in the mobile device settings.

Temporarily saving the image on the device:

C#
var path = Android.OS.Environment.GetExternalStoragePublicDirectory("Temp");

if (!File.Exists(path.Path))
{
    Directory.CreateDirectory(path.Path);
}

string absPath = path.Path + "tempfile.jpg";
File.WriteAllBytes(absPath, GetBytes(url));

Now creating an Intent to share the image:

C#
var _context = Android.App.Application.Context;
Intent sendIntent = new Intent(global::Android.Content.Intent.ActionSend);
sendIntent.PutExtra(global::Android.Content.Intent.ExtraText, "Application Name");
sendIntent.SetType("image/*");
sendIntent.PutExtra(Intent.ExtraStream, Android.Net.Uri.Parse("file://" + absPath));
_context.StartActivity(Intent.CreateChooser(sendIntent, "Sharing"));

AndroidManifest.XML

To get it to work, we need to allow these permissions for our application.

XML
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

File Provider Access

If your targetSdkVersion >= 24, then we have to use FileProvider class to give access to the particular file or folder to make them accessible for other apps.There are different ways of doing it but this is how I've done. Add the following lines in MAINACTIVITY.CS class:

C#
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.SetVmPolicy(builder.Build());

Xamarin.iOS

Here is the IShareImage implementation for Xamarin.iOS.

C#
var imgSource = ImageSource.FromUri(new Uri(url));
var handler = new ImageLoaderSourceHandler();
var uiImage = await handler.LoadImageAsync(imgSource);
var img = NSObject.FromObject(uiImage);
var mess = NSObject.FromObject("App Name");
var activityItems = new[] { mess, img };
var activityController = new UIActivityViewController(activityItems, null);
var topController = UIApplication.SharedApplication.KeyWindow.RootViewController;

while (topController.PresentedViewController != null)
{
    topController = topController.PresentedViewController;
}

topController.PresentViewController(activityController, true, () => { });

Info.plist

In case you want to save the media/image to your device, do not forget to set the following Property on Info.plist.

  • Privacy - Photo Library Additions Usage Description

Points of Interest

With minor changes, this code can be reused for different media types like mp3, mp4, documents, pdf, etc. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
I'm an aspiring Developer recently started more and more interested towards ASP.NET and related technologies. I tend to love playing around with different technologies and get more hands on experience by working on different projects. My prime interest lies in Mobile Development(both native and hybrid) and have developed few basic application during my course of studies and work. Always up for a challenge and plan on to finish it through best possible approach.

Comments and Discussions

 
BugError: Something went wrong. Please try again later. Pin
Gaurang Makwana9-Sep-19 7:45
Gaurang Makwana9-Sep-19 7:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.