반응형
Notice
Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- socket-client
- google-login
- 오즈뷰어
- Android
- hung-up
- Java8
- NoSuchMethodError
- ActivityResult-API
- gradle
- BottomSheetDialog
- Dva
- firebase-database
- 워치
- Kotlin
- OZViewer
- Firebase
- git-push
- cloud-firestore
- TIZEN
- JNI
- socket-server
- mosquitto
- Flavors
- git
- AWS
- socket.io
- ozd
- Galaxy Watch
- firebase-storage
- mqtt
Archives
- Today
- Total
Hyeyeon blog
[Android] 갤러리에서 사진 가져오기 - ActivityResultLauncher, Intent 본문
반응형
Intent를 이용한 방법
1. 갤러리 호출
val PICK_IMAGE_REQUEST = 1001
val intent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
intent.type = "image/*"
startActivityForResult(intent, PICK_IMAGE_REQUEST)
2. 선택한 사진 불러오기
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
if (requestCode == PICK_IMAGE_REQUEST && resultCode == Activity.RESULT_OK) {
val uri : Uri? = data?.data
if(uri != null) {
imageView.setImageURI(uri)
}
}
}
ActivityResultLauncher를 이용한 방법
var launcher =
registerForActivityResult<String, Uri>(ActivityResultContracts.GetContent()) { uri -> setImage(uri) }
launcher.launch("image/*")
관련 글
728x90
'개발 > Android' 카테고리의 다른 글
[Android] DataBinding으로 RecyclerView 만들기 (리스트 높이 제한 방법) (0) | 2022.12.31 |
---|---|
[Android] NFC on, off 상태 확인 (기본모드, 카드모드, 비활성화) (0) | 2022.06.23 |
[Android] Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8 해결 방법 (0) | 2021.12.07 |
[Android] Progress Dialog 만들기 (2) | 2021.08.25 |
[Android] Firebase Database - Cloud Firestore 연동하기 (0) | 2021.06.08 |
Comments