티스토리 뷰
ANDROID
StartAcitivyForResult / OnActivityForResult deprecated -> registerForActivityResult
혀내 2021. 12. 4. 22:17반응형
Description
갤러리에서 이미지를 가져오는 기능을 만들면서
StartActivityForResult가 위와 같이 deprecated되었다는 오류가 떴다.
OnActivityForResult도 마찬가지 ..😢
StartActivityForResult를 대체하는 Launcher와 registerForActivityForResult
//Open the album
var photoPickerIntent = Intent(Intent.ACTION_PICK)
photoPickerIntent.type = "image/*"
launcher.launch(photoPickerIntent);
StartActivityForResult 부분은 launch 메소드로 대체한다.
val launcher = registerForActivityResult(ActivityResultContracts.StartActivityForResult()) {
result ->
if (result.resultCode == Activity.RESULT_OK) {
//This is path to the selected image
photoUri = result.data?.data
addphoto_image.setImageURI(photoUri)
} else {
// Exit the addPhotoActivity if you leave the album without selecting it
finish()
}
}
OnActivityForResult는 위의 코드로 바꿔주면 끝
참고자료 : https://developer.android.com/training/basics/intents/result?hl=ko
반응형
'ANDROID' 카테고리의 다른 글
[ANDROID] RecyclerView로 커스텀 캘린더뷰 제작하기 (Custom CalendarView) (0) | 2022.04.12 |
---|---|
[ANDROID] Room(SQLite) DB 백업 및 복구 기능 구현하기 (0) | 2022.03.20 |
Android View Binding(안드로이드 뷰바인딩) (0) | 2021.12.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- cat
- linuxawk
- 버추억박스에러
- 코테
- linux파일
- 백준27211
- linuxgedit
- baekjoon
- 쇼미더코드
- Baekjoon27219
- 백준27219
- GitHubAPIforJava
- GithubAPI
- OnActivityForResult
- Baekjoon27211
- whatis
- 백준
- atq
- cron시스템
- api문서
- E_FAIL
- 리눅스cron
- 버추억박스오류
- 사용자ID
- awk프로그램
- virtualbox
- 리눅스
- Linux
- linuxtouch
- SELECT #SELECTFROM #WHERE #ORDERBY #GROUPBY #HAVING #EXISTS #NOTEXISTS #UNION #MINUS #INTERSECTION #SQL #SQLPLUS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함