갤러리

    Android Studio - 카메라 or 갤러리에서 사진 가져오기 Cheet Sheet

    1. fileprovider.xml 만들기 res - xml 에 XML Resource file을 추가 파일명은 fileprovider로 만들고 아래 코드를 복사해 넣는다. 2. Manifest 설정 AndroidManifest.xml에 다음 항목들을 추가해 넣는다. 의 authorities는 자신에 맞게 변경한다. android:requestLegacyExternalStorage="true" 3. Cheet Sheet import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivi..