반응형
FileProvider.getUriForFile(Context context, String authority, File file) 를 사용하자.
file : content uri 로 바꿀 file path
example code :
Uri uri = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName(), file)
Intent intent = new Intent(ACTION_EXAMPLE, uri);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
https://developer.android.com/reference/android/support/v4/content/FileProvider.html
반응형
'프로그램 > Java - Android' 카테고리의 다른 글
android xml id 생성시 접미사 (0) | 2017.06.21 |
---|---|
Context Capabilities (0) | 2017.06.15 |
Fragment LifeCycle (0) | 2017.04.13 |
Fragment 데이터 전달 (0) | 2017.04.13 |
Android O 기능 및 API (0) | 2017.04.03 |