Androidの写真や画像が保存されるアプリのフォトあるいはギャラリーから画像を取得するにはSAF(Storage Access Framework)を使うと可能です。
画像ファイルを読み出したい場合などは、ACTION_OPEN_DOCUMENT を使い、また保存したい場合はACTION_CREATE_DOCUMENTアクションを使います。
Android Studio
2021.1.1
2021.1.1
SAF, Storage Access Framework
SAFを使うことによりコンテンツを容易に参照できます。
- ドキュメント ストレージ プロバイダ全体から簡単にドキュメント、画像、その他のファイルを参照して開くことができる
- 標準の Picker UI により、アプリやプロバイダを通じて一貫性のある方法でファイルにアクセスできる
Intent ACTION_OPEN
画像ファイルを取り出してみましょう。
- Intent.ACTION_OPEN_DOCUMENT:
- ピッカーを使用してファイルを選択するためのIntent
- Intent.CATEGORY_OPENABLE:
- openFileDescriptor() によるファイル ストリームとして利用可能な「開くことができる」ファイルのカテゴリーを選択
- setType:
- MIME タイプを指定、取得するファイルの形式をフィルターする
1 2 3 4 5 6 7 8 9 10 11 |
// ACTION_OPEN_DOCUMENT is the intent to choose a file via the system's file browser. val intent = Intent(Intent.ACTION_OPEN_DOCUMENT) // Filter to only show results that can be "opened", such as a // file (as opposed to a list of contacts or timezones) intent.addCategory(Intent.CATEGORY_OPENABLE) // Filter to show only images, using the image MIME data type. intent.type = "image/*" resultLauncher.launch(intent) |
ピッカーから画像を選択すると、registerForActivityResult()を使って結果のコールバックを登録しそこからデータを取り出します
1 2 3 4 5 6 7 8 |
private var resultLauncher = registerForActivityResult( StartActivityForResult() ) { result: ActivityResult -> if (result.resultCode == AppCompatActivity.RESULT_OK) { val resultData = result.data resultData?.let { openImage(it) } } } |
このケースでは、パーミッションなど必要ありません(これがありがたいですね)
サンプルコード
フォトにある画像を読みだして表示させてみましょう。
MainActivity.kt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
//package your.package.name import android.content.Intent import android.graphics.BitmapFactory import android.net.Uri import android.os.Bundle import android.os.ParcelFileDescriptor import android.widget.Button import android.widget.ImageView import android.widget.TextView import androidx.activity.result.ActivityResult import androidx.activity.result.contract.ActivityResultContracts.StartActivityForResult import androidx.appcompat.app.AppCompatActivity import java.io.FileDescriptor import java.io.IOException import java.util.* class MainActivity : AppCompatActivity() { private var resultLauncher = registerForActivityResult( StartActivityForResult() ) { result: ActivityResult -> if (result.resultCode == RESULT_OK) { val resultData = result.data resultData?.let { openImage(it) } } } override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val button: Button = findViewById(R.id.button) button.setOnClickListener { val intent = Intent(Intent.ACTION_OPEN_DOCUMENT) intent.addCategory(Intent.CATEGORY_OPENABLE) intent.type = "image/*" resultLauncher.launch(intent) } } private fun openImage(resultData: Intent) { var pfDescriptor: ParcelFileDescriptor? = null val textView = findViewById<TextView>(R.id.text_view) val imageView = findViewById<ImageView>(R.id.image_view) try { val uri: Uri? = resultData.data // Uriを表示 textView.text = String.format(Locale.US, "Uri: %s", uri.toString()) pfDescriptor = uri?.let { contentResolver.openFileDescriptor(it, "r") } if (pfDescriptor != null) { val fileDescriptor: FileDescriptor = pfDescriptor.fileDescriptor val bmp = BitmapFactory.decodeFileDescriptor(fileDescriptor) pfDescriptor.close() imageView.setImageBitmap(bmp) } } catch (e: IOException) { e.printStackTrace() } finally { try { pfDescriptor?.close() } catch (e: Exception) { e.printStackTrace() } } } } |
activity_main.xml
リソースです
strings.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="#fee" android:gravity="center_horizontal" tools:context=".MainActivity"> <TextView android:id="@+id/text_view" android:textColor="#000" android:layout_margin="10dp" android:layout_width="match_parent" android:layout_height="wrap_content" /> <Button android:id="@+id/button" android:text="@string/button" android:layout_margin="10dp" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <ImageView android:id="@+id/image_view" android:scaleType="centerInside" android:contentDescription="@string/description" android:layout_margin="10dp" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout> |
リソースです
strings.xml
1 2 3 4 5 |
<resources> <string name="app_name">YourAppName</string> <string name="button">Get Image</string> <string name="description">a picture</string> </resources> |
サンプル動画
本来は非同期で画像を取り込む事が望ましいとされています。(この例では簡略化させていただきました…)
関連ページ:
データを保存するストレージ領域が目的・用途によって区分されてセキュリティー的に厳しくなりました。
対象範囲別外部ストレージ
S...
References:
Storage Access Framework
インテント
ACTION_OPEN_DOCUMENT
ACTION_GET_CONTENT