https://codeday.me/ko/qa/20190315/44953.html
android – URI를 의도에 전달하는 방법 - 코드 로그
그 URI를 사용하기 위해 URI-Object를 Intent에 전달하려고합니다.다른 활동에서 … URI를 어떻게 전달합니까? private Uri imageUri; .... Intent intent = new Intent(this, GoogleActivity.class); intent.putExtra("imageUri", imageUri); startActivity(intent); this.finish(); 다른 활동에서이 URI를 어떻게 사용합니까? i
codeday.me
https://stackoverflow.com/questions/8017374/how-to-pass-a-uri-to-an-intent
How to pass a URI to an intent?
I'm trying to pass a URI-Object to my Intent in order to use that URI in another activity... How do I pass a URI ? private Uri imageUri; .... Intent intent = new Intent(this, GoogleActivity.class);
stackoverflow.com
'내맘대로 > 안드로이드' 카테고리의 다른 글
[Android] Volley (0) | 2021.02.17 |
---|---|
[android] java.io.ioexception: cleartext http traffic to not permitted 해결 방법 (0) | 2019.12.18 |
갤러리에서 여러 이미지 선택 (0) | 2019.10.03 |
Acitivity로 이미지 Uri 받아오기 (0) | 2019.10.03 |
갤러리에서 사진 가져오기 (Uri) (0) | 2019.10.03 |