أداة اختيار الصور

يظهر مربّع حوار "أداة اختيار الصور" مع ملفات الوسائط على جهازك. اختَر صورة لمشاركتها مع التطبيق.
الشكل 1. توفّر "أداة اختيار الصور" واجهة مستخدم سهلة الاستخدام لمشاركة الصور مع تطبيقك.

توفّر أداة اختيار الصور واجهة قابلة للتصفّح تعرض للمستخدم مكتبة الوسائط الخاصة به، ويتم ترتيبها حسب التاريخ من الأحدث إلى الأقدم. كما هو موضّح في الدليل التعليمي حول أفضل الممارسات المتعلّقة بالخصوصية، توفّر أداة اختيار الصور طريقة آمنة ومضمّنة للمستخدمين من أجل منح تطبيقك إذن الوصول إلى صور وفيديوهات محدّدة فقط بدلاً من الوصول إلى مكتبة الوسائط بأكملها.

يمكن للمستخدمين الذين لديهم مقدّمو خدمات وسائط مؤهّلون على السحابة الإلكترونية على أجهزتهم أيضًا الاختيار من بين الصور والفيديوهات المخزّنة عن بُعد. مزيد من المعلومات عن موفّري الوسائط في السحابة الإلكترونية

يتم تحديث الأداة تلقائيًا، ما يوفر وظائف موسَّعة لمستخدمي التطبيق بمرور الوقت بدون الحاجة إلى أي تغيير في الرموز.

استخدام عقود نشاط Jetpack

لتبسيط دمج "أداة اختيار الصور"، يجب تضمين الإصدار 1.7.0 أو الإصدارات الأحدث من مكتبة androidx.activity.

استخدِم عقود نتائج الأنشطة التالية لتشغيل أداة اختيار الصور:

إذا لم تكن أداة اختيار الصور متاحة على أحد الأجهزة، ستستدعي المكتبة تلقائيًا إجراء الإجراء المقصود ACTION_OPEN_DOCUMENT بدلاً من ذلك. يتوفّر هذا الإجراء على الأجهزة التي تعمل بنظام التشغيل Android 4.4 (مستوى واجهة برمجة التطبيقات 19) أو إصدار أحدث. يمكنك التحقّق مما إذا كان تطبيق "أداة اختيار الصور" متوفّرًا على جهاز معيّن من خلال الاتصال بالرقم isPhotoPickerAvailable().

اختيار ملف وسائط واحد

لاختيار عنصر وسائط واحد، استخدِم عقد نتائج النشاط PickVisualMedia كما هو موضّح في مقتطف الرمز التالي:

المشاهدات

// Registers a photo picker activity launcher in single-select mode.
val pickMedia = registerForActivityResult(PickVisualMedia()) { uri ->
    // Callback is invoked after the user selects a media item or closes the
    // photo picker.
    if (uri != null) {
        Log.d("PhotoPicker", "Selected URI: $uri")
    } else {
        Log.d("PhotoPicker", "No media selected")
    }
}

// Include only one of the following calls to launch(), depending on the types
// of media that you want to let the user choose from.

// Launch the photo picker and let the user choose images and videos.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageAndVideo))

// Launch the photo picker and let the user choose only images.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageOnly))

// Launch the photo picker and let the user choose only videos.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.VideoOnly))

// Launch the photo picker and let the user choose only images/videos of a
// specific MIME type, such as GIFs.
val mimeType = "image/gif"
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.SingleMimeType(mimeType)))

المشاهدات

// Registers a photo picker activity launcher in single-select mode.
ActivityResultLauncher<PickVisualMediaRequest> pickMedia =
        registerForActivityResult(new PickVisualMedia(), uri -> {
    // Callback is invoked after the user selects a media item or closes the
    // photo picker.
    if (uri != null) {
        Log.d("PhotoPicker", "Selected URI: " + uri);
    } else {
        Log.d("PhotoPicker", "No media selected");
    }
});

// Include only one of the following calls to launch(), depending on the types
// of media that you want to let the user choose from.

// Launch the photo picker and let the user choose images and videos.
pickMedia.launch(new PickVisualMediaRequest.Builder()
        .setMediaType(PickVisualMedia.ImageAndVideo.INSTANCE)
        .build());

// Launch the photo picker and let the user choose only images.
pickMedia.launch(new PickVisualMediaRequest.Builder()
        .setMediaType(PickVisualMedia.ImageOnly.INSTANCE)
        .build());

// Launch the photo picker and let the user choose only videos.
pickMedia.launch(new PickVisualMediaRequest.Builder()
        .setMediaType(PickVisualMedia.VideoOnly.INSTANCE)
        .build());

// Launch the photo picker and let the user choose only images/videos of a
// specific MIME type, such as GIFs.
String mimeType = "image/gif";
pickMedia.launch(new PickVisualMediaRequest.Builder()
        .setMediaType(new PickVisualMedia.SingleMimeType(mimeType))
        .build());

إنشاء

// Registers a photo picker activity launcher in single-select mode.
val pickMedia = rememberLauncherForActivityResult(PickVisualMedia()) { uri ->
    // Callback is invoked after the user selects a media item or closes the
    // photo picker.
    if (uri != null) {
        Log.d("PhotoPicker", "Selected URI: $uri")
    } else {
        Log.d("PhotoPicker", "No media selected")
    }
}

// Include only one of the following calls to launch(), depending on the types
// of media that you want to let the user choose from.

// Launch the photo picker and let the user choose images and videos.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageAndVideo))

// Launch the photo picker and let the user choose only images.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageOnly))

// Launch the photo picker and let the user choose only videos.
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.VideoOnly))

// Launch the photo picker and let the user choose only images/videos of a
// specific MIME type, such as GIFs.
val mimeType = "image/gif"
pickMedia.launch(PickVisualMediaRequest(PickVisualMedia.SingleMimeType(mimeType)))

اختيار ملفات وسائط متعددة

لاختيار عناصر وسائط متعددة، حدِّد الحد الأقصى لعدد ملفات الوسائط القابلة للاختيار، كما هو موضّح في مقتطف الرمز البرمجي التالي.

المشاهدات

// Registers a photo picker activity launcher in multi-select mode.
// In this example, the app lets the user select up to 5 media files.
val pickMultipleMedia =
        registerForActivityResult(PickMultipleVisualMedia(5)) { uris ->
    // Callback is invoked after the user selects media items or closes the
    // photo picker.
    if (uris.isNotEmpty()) {
        Log.d("PhotoPicker", "Number of items selected: ${uris.size}")
    } else {
        Log.d("PhotoPicker", "No media selected")
    }
}

// For this example, launch the photo picker and let the user choose images
// and videos. If you want the user to select a specific type of media file,
// use the overloaded versions of launch(), as shown in the section about how
// to select a single media item.
pickMultipleMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageAndVideo))

المشاهدات

// Registers a photo picker activity launcher in multi-select mode.
// In this example, the app lets the user select up to 5 media files.
ActivityResultLauncher<PickVisualMediaRequest> pickMultipleMedia =
        registerForActivityResult(new PickMultipleVisualMedia(5), uris -> {
    // Callback is invoked after the user selects media items or closes the
    // photo picker.
    if (!uris.isEmpty()) {
        Log.d("PhotoPicker", "Number of items selected: " + uris.size());
    } else {
        Log.d("PhotoPicker", "No media selected");
    }
});

// For this example, launch the photo picker and let the user choose images
// and videos. If you want the user to select a specific type of media file,
// use the overloaded versions of launch(), as shown in the section about how
// to select a single media item.
pickMultipleMedia.launch(new PickVisualMediaRequest.Builder()
        .setMediaType(PickVisualMedia.ImageAndVideo.INSTANCE)
        .build());

إنشاء

// Registers a photo picker activity launcher in multi-select mode.
// In this example, the app lets the user select up to 5 media files.
val pickMultipleMedia =
        rememberLauncherForActivityResult(PickMultipleVisualMedia(5)) { uris ->
    // Callback is invoked after the user selects media items or closes the
    // photo picker.
    if (uris.isNotEmpty()) {
        Log.d("PhotoPicker", "Number of items selected: ${uris.size}")
    } else {
        Log.d("PhotoPicker", "No media selected")
    }
}

// For this example, launch the photo picker and let the user choose images
// and videos. If you want the user to select a specific type of media file,
// use the overloaded versions of launch(), as shown in the section about how
// to select a single media item.
pickMultipleMedia.launch(PickVisualMediaRequest(PickVisualMedia.ImageAndVideo))

تحدّ المنصة من الحد الأقصى لعدد الملفات التي يمكنك أن تطلب من المستخدم اختيارها في أداة اختيار الصور. للوصول إلى هذا الحدّ، يُرجى الاتصال بالرقم التالي: getPickImagesMaxLimit(). على الأجهزة التي لا يتوفّر فيها أداة اختيار الصور، يتم تجاهل هذا الحدّ.

توفُّر جهاز

تتوفّر أداة اختيار الصور على الأجهزة التي تستوفي المعايير التالية:

يمكن للأجهزة القديمة التي تعمل بالإصدار 4.4 من نظام التشغيل Android (المستوى 19 من واجهة برمجة التطبيقات) إلى Android 10 (المستوى 29 لواجهة برمجة التطبيقات) وأجهزة Android Go التي تعمل بالإصدار 11 أو 12 من نظام التشغيل Android والتي تتوافق مع خدمات Google Play أن تثبِّت إصدارًا من "أداة اختيار الصور" يعمل في الخلفية. ل تفعيل التثبيت التلقائي لمكوّن "أداة اختيار الصور" المتوافقة مع الإصدارات القديمة من Android من خلال "خدمات Google Play"، أضِف الإدخال التالي إلى علامة <application> في ملف بيان تطبيقك:

<!-- Trigger Google Play services to install the backported photo picker module. -->
<service android:name="com.google.android.gms.metadata.ModuleDependencies"
         android:enabled="false"
         android:exported="false"
         tools:ignore="MissingClass">
    <intent-filter>
        <action android:name="com.google.android.gms.metadata.MODULE_DEPENDENCIES" />
    </intent-filter>
    <meta-data android:name="photopicker_activity:0:required" android:value="" />
</service>

الاستمرار في الوصول إلى ملفات الوسائط

يمنح النظام تطبيقك إذن الوصول إلى ملفات الوسائط تلقائيًا إلى أن تتم مجددًا إعادة تشغيل الجهاز أو إلى أن يتم إيقاف تطبيقك. إذا كان تطبيقك يؤدي عملًا يستغرق وقتًا طويلاً، مثل تحميل ملف كبير في الخلفية، قد تحتاج إلى الاحتفاظ بإذن الوصول هذا لفترة أطول. لإجراء ذلك، يمكنك استدعاء طريقة takePersistableUriPermission():

Kotlin

val flag = Intent.FLAG_GRANT_READ_URI_PERMISSION
context.contentResolver.takePersistableUriPermission(uri, flag)

Java

int flag = Intent.FLAG_GRANT_READ_URI_PERMISSION;
context.contentResolver.takePersistableUriPermission(uri, flag);