XAML in Xamarin.Forms 基礎篇 電子書

XAML in Xamarin.Forms 基礎篇 電子書
XAML in Xamarin.Forms 基礎篇 電子書

Xamarin.Forms 快速入門 電子書

Xamarin.Forms 快速入門 電子書
Xamarin.Forms 快速入門 電子書

2018/06/15

Xamarin.Forms 使用 MediaPlugin 進行拍照並且顯示在螢幕上

了解更多關於 [Xamarin.Android] 的使用方式
了解更多關於 [Xamarin.iOS] 的使用方式
了解更多關於 [Xamarin.Forms] 的使用方式
了解更多關於 [Hello, Android:快速入門] 的使用方式
了解更多關於 [Hello, iOS – 快速入門] 的使用方式
了解更多關於 [Xamarin.Forms 快速入門] 的使用方式

在這篇文章中,我們將需要使用 Xam.Plugin.Media 這個套件,讓您的 App 可以使用手機鏡頭來進行拍照,並且將這個拍照後的圖片儲存在該應用程式的沙箱 sandbox 資料夾內,之後,我們要使用 ImageSource 這個類別,把這個圖片檔案讀取出來,並且顯示在螢幕上,更多關於 Xam.Plugin.Media NuGet 套件的說明,可以參考 MediaPlugin
本文章的範例專案位於 
https://github.com/vulcanlee/xamarin-forms-sample2018/tree/master/XFMediaPlugin

建立測試專案

  • 首先,我們先使用 Prism Template Pack 擴充功能所提供的專案樣板,建立起一個 Xamarin.Forms 專案,在這裡我們僅選擇 Android / iOS 類型的專案;接著,我們需要把 PropertyChanged.Fody NuGet 套件安裝到 .NET Standard 專案類別庫內,並且安裝 FodyWeavers.xml 檔案。
  • 接下來,我們需要參考 MediaPlugin 文件,從 Setup 段落中提到,我們需要安裝 Xam.Plugin.MediaNuGet 套件到 .NET Standard 類別庫與原生專案內 (Install into your PCL/.NET Standard project and Client projects) 。
    Xam.Plugin.Media
    底下是當您安裝好 Xam.Plugin.Media NuGet 套件之後,會顯示這個套件 readme.txt 檔案,其內容如下:
Media Plugin for Xamarin & Windows

Find the latest at: https://github.com/jamesmontemagno/MediaPlugin

## Additional Required Setup (Please Read!)

## Android 
In  your BaseActivity or MainActivity (for Xamarin.Forms) add this code:


Add to Activity:

public override void OnRequestPermissionsResult(int requestCode, string[] permissions, Android.Content.PM.Permission[] grantResults)
{
    Plugin.Permissions.PermissionsImplementation.Current.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}

The `WRITE_EXTERNAL_STORAGE`, `READ_EXTERNAL_STORAGE` permissions are required, but the library will automatically add this for you. Additionally, if your users are running Marshmallow the Plugin will automatically prompt them for runtime permissions.

Additionally, the following has been added for you:
[assembly: UsesFeature("android.hardware.camera", Required = false)]
[assembly: UsesFeature("android.hardware.camera.autofocus", Required = false)]


You must also add a few additional configuration files to adhere to the new strict mode:

1.) Add the following to your AndroidManifest.xml inside the <application> tags:

<provider android:name="android.support.v4.content.FileProvider" 
                android:authorities="${applicationId}.fileprovider" 
                android:exported="false" 
                android:grantUriPermissions="true">
            <meta-data android:name="android.support.FILE_PROVIDER_PATHS" 
                android:resource="@xml/file_paths"></meta-data>
</provider>

YOUR_APP_PACKAGE_NAME must be set to your app package name!

2.) Add a new folder called xml into your Resources folder and add a new XML file called `file_paths.xml`

Add the following code:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-files-path name="my_images" path="Pictures" />
    <external-files-path name="my_movies" path="Movies" />
</paths>

YOUR_APP_PACKAGE_NAME must be set to your app package name!

You can read more at: https://developer.android.com/training/camera/photobasics.html

## Android Current Activity Setup

This plugin uses the [Current Activity Plugin](https://github.com/jamesmontemagno/CurrentActivityPlugin/blob/master/README.md) to get access to the current Android Activity. Be sure to complete the full setup if a MainApplication.cs file was not automatically added to your application. Please fully read through the [Current Activity Plugin Documentation](https://github.com/jamesmontemagno/CurrentActivityPlugin/blob/master/README.md). At an absolute minimum you must set the following in your Activity's OnCreate method:

CrossCurrentActivity.Current.Init(this, bundle);

It is highly recommended that you use a custom Application that are outlined in the Current Activity Plugin Documentation](https://github.com/jamesmontemagno/CurrentActivityPlugin/blob/master/README.md)

### iOS

Your app is required to have keys in your Info.plist for `NSCameraUsageDescription` and `NSPhotoLibraryUsageDescription` in order to access the device's camera and photo/video library. If you are using the Video capabilities of the library then you must also add `NSMicrophoneUsageDescription`.  The string that you provide for each of these keys will be displayed to the user when they are prompted to provide permission to access these device features. You can read me here: https://blog.xamarin.com/new-ios-10-privacy-permission-settings/

Such as:
<key>NSCameraUsageDescription</key>
<string>This app needs access to the camera to take photos.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This app needs access to photos.</string>
<key>NSMicrophoneUsageDescription</key>
<string>This app needs access to microphone.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>This app needs access to the photo gallery.</string>

### UWP
Set `Webcam` permission.

### Tizen
Please add the following Privileges in tizen-manifest.xml file

http://tizen.org/privilege/appmanager.launch
http://tizen.org/privilege/mediastorage

See below for additional instructions.
https://developer.tizen.org/development/visual-studio-tools-tizen/tools/tizen-manifest-editor#privileges
  • 宣告頁面 XAML 內容如下,在這裡,我們僅有一個 Image 控制項目,並且設定這個圖片的手勢操作,當使用者點選這個圖片的時候,將會執行 ViewModel 內的 TapCommand 命令的委派方法
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="XFMediaPlugin.Views.MainPage"
             Title="使用 MediaPlugin 進行拍照">

    <StackLayout BackgroundColor="#FFC000">
        <Image
            Source="{Binding MyImageSource}" Aspect="AspectFit">
            <Image.GestureRecognizers>
                <TapGestureRecognizer Command="{Binding TapCommand}" />
            </Image.GestureRecognizers>
        </Image>
    </StackLayout>

</ContentPage>
  • 現在,我們開始撰寫 ViewModel 的 C# 程式碼
    在 ViewModel 內,我們宣告一個型別為 ImageSource 的 MyImageSource 屬性 Property,這個屬性將會綁定到頁面 View 中的 Image.Source 屬性 Attribute 中。
    關於當使用者點選這個圖片的時候,我們也在這裡定義了 TapCommand 這個 DelegateCommand 物件,並且設定他的委派方法,也就是當使用點選圖片之後,需要執行的方法。
    我們可以透過 Plugin.Media.CrossMedia.Current.TakePhotoAsync 方法,讓我們的 App 切換到拍照模式,一旦拍照完成之後,將會回傳一個 MediaFile 型別物件,我們便可以透過這個物件,取得該圖片的存取 Stream,並透過 Stream 建立 ImageSource 物件,此時,螢幕上就可以看到我們剛剛拍照的圖片了。
using Prism.Commands;
using Prism.Mvvm;
using Prism.Navigation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace XFMediaPlugin.ViewModels
{
    using System.ComponentModel;
    using Prism.Events;
    using Prism.Navigation;
    using Prism.Services;
    using Xamarin.Forms;

    public class MainPageViewModel : INotifyPropertyChanged, INavigationAware
    {
        public event PropertyChangedEventHandler PropertyChanged;
        public ImageSource MyImageSource { get; set; } = ImageSource.FromFile("DefaultImage.jpg");
        public DelegateCommand TapCommand { get; set; }
        private readonly INavigationService _navigationService;
        public readonly IPageDialogService _dialogService;
        public MainPageViewModel(INavigationService navigationService,
            IPageDialogService dialogService)
        {
            _navigationService = navigationService;
            _dialogService = dialogService;

            TapCommand = new DelegateCommand(async () =>
            {
                // 進行 Plugin.Media 套件的初始化動作
                await Plugin.Media.CrossMedia.Current.Initialize();

                // 確認這個裝置是否具有拍照的功能
                if (!Plugin.Media.CrossMedia.Current.IsCameraAvailable || !Plugin.Media.CrossMedia.Current.IsTakePhotoSupported)
                {
                    await _dialogService.DisplayAlertAsync("No Camera", ":( No camera available.", "OK");
                    return;
                }

                // 啟動拍照功能,並且儲存到指定的路徑與檔案中
                var file = await Plugin.Media.CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions
                {
                    Directory = "Sample",
                    Name = "Sample.jpg"
                });

                if (file == null)
                    return;

                // 讀取剛剛拍照的檔案內容,轉換成為 ImageSource,如此,就可以顯示到螢幕上了

                MyImageSource = ImageSource.FromStream(() =>
                {
                    var stream = file.GetStream();
                    file.Dispose();
                    return stream;
                });
            });
        }

        public void OnNavigatedFrom(NavigationParameters parameters)
        {

        }

        public void OnNavigatingTo(NavigationParameters parameters)
        {

        }

        public void OnNavigatedTo(NavigationParameters parameters)
        {

        }

    }
}
  • 現在我們可以開始進行測試,請將這個 Android 專案執行起來,在這裡,我們將會在模擬器上來測試,因此,將會看到下圖畫面。
    Xam.Plugin.Media
    不過,當我們點選最上方的圖片,很不幸的,現在這個系統是無法正常運作,並且顯示底下的例外異常錯誤訊息。
Unhandled Exception:

System.ArgumentException: Unable to get file location. This most likely means that the file provider information is not set in your Android Manifest file. Please check documentation on how to set this up in your project.

修正 System.ArgumentException 錯誤

會發生這樣問題,這是因為您對於 MediaPlugin 套件的初始化與相關設定並沒有完成,在這裡,您可以參考 MediaPlugin 文件中的 Important Permission Information 小節,在這裡,我們僅說明 Android 平台的做法,而 iOS 平台的做法,請參考該文件上的名。
  • 權限部分,關於 WRITE_EXTERNAL_STORAGE & READ_EXTERNAL_STORAGE 這兩個權限,該套件會自動幫我們加入,而其他的部分,請打開 Android 專案內的 MainActivity.cs 檔案
  • 請在 OnCreate 方法內的 base.OnCreate(bundle); 敘述的下方,加入該行程式碼
Plugin.CurrentActivity.CrossCurrentActivity.Current.Init(this, bundle);
  • 請在 MainActivity 類別中,加入這個方法定義
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, Android.Content.PM.Permission[] grantResults)
{
    Plugin.Permissions.PermissionsImplementation.Current.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
  • 請使用滑鼠雙擊 Android 專案內的 Properties 節點
Andproid Properties
  • 當 Android 專案的屬性視窗顯示出來之後,請切換到 Android 資訊清單頁次,並且確實記下 Android 專案的套件名稱,我們這個練習專案的套件名稱為 com.companyname.appname
Andproid Properties
  • 現在,我們需要在 AndroidManifest.xml 檔案內加入一些設定,這個時候,請把 Android 專案內的 Properties 節點展開,此時,您將會看到 AndroidManifest.xml 解點,使用滑鼠雙擊,打開這個 xml 檔案
Andproid Properties AndroidManifest.xml
  • 請將底下的 XML 加入進去,不過,請記得要將這個文字
    [您的專案套件名稱]
    替換成為您的 Android 專案套件名稱,在我們這個練習中,也就是
    com.companyname.appname
    <provider android:name="android.support.v4.content.FileProvider"
          android:authorities="[您的專案套件名稱].fileprovider"
          android:exported="false"
          android:grantUriPermissions="true">

      <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
                       android:resource="@xml/file_paths"></meta-data>
    </provider>
  • 請展開 Android 專案的 Resources 資料夾,並且滑鼠右擊 Resources 資料夾,選擇 [加入] > [新增資料夾] 選項,新增一個名稱為 xml 的資料夾
  • 滑鼠右擊剛剛建立的 xml 資料夾,選擇 [加入] > [新增項目] > [Visual C#] > [XML 檔]
    請在 新增項目 - XFMediaPlugin.Android 對話窗中的名稱欄位,輸入 file_paths.xml
Visual Studio 2017 加入一個 xml 檔案
  • 請打開剛剛建立的 xml 檔案,填入底下內容
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
  <external-files-path name="my_images" path="Pictures" />
  <external-files-path name="my_movies" path="Movies" />
</paths>
  • 使用滑鼠點擊剛剛建立一的 XML 檔案,且在屬性視窗中找到 自訂工具 項目,輸入
    MSBuild:UpdateGeneratedFiles
android.support.FILE_PROVIDER_PATHS
  • 最後,您可以執行這個專案,看看能否使用拍照功能,並且將拍照後的圖片顯示在螢幕上
拍照與顯示圖片 拍照與顯示圖片

了解更多關於 [Xamarin.Android] 的使用方式
了解更多關於 [Xamarin.iOS] 的使用方式
了解更多關於 [Xamarin.Forms] 的使用方式
了解更多關於 [Hello, Android:快速入門] 的使用方式
了解更多關於 [Hello, iOS – 快速入門] 的使用方式
了解更多關於 [Xamarin.Forms 快速入門] 的使用方式

4 則留言:

  1. 匿名3/9/18

    vulcan老師您好,請問如果按照這個範例製作,接下來想要利用API上傳至某server,要怎麼寫呢?感謝~

    回覆刪除
  2. 只要您能夠取得拍照下來的圖片物件,接下來的設計動作,將如同您平常開發與設計 .NET 程式一樣,我通常是使用 HttpClient 這個類別來呼叫遠端 Web API
    更多關於 HttpClient 的用法與範例,可以參考這裡 http://csharpkh.blogspot.com/2017/10/c-httpclient-webapi.html

    回覆刪除
    回覆
    1. Learner5/9/18

      好喔,會再去試試看,感謝老師!

      刪除
  3. vulcan老師您好
    我已按照上面的步驟做,可是 我的Android 專案內的 MainActivity.cs 執行跳出以下的例外:
    Unhandled Exception:
    Java.Lang.NullPointerException: Attempt to invoke virtual method 'void android.support.v7.widget.ContentFrameLayout.setId(int)' on a null object reference

    回覆刪除