일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 영어공부
- android recyclerview
- Android Jetpack
- DataBinding
- Android Navigation
- WebView
- 안드로이드 갤러리 접근
- 습관만들기
- scope function
- Android Interceptor
- Android ViewPager2
- 영어독립365
- Android DataBinding
- MVP Architecture
- 프로그래머스 알고리즘
- Kotlin
- Android 12
- 알고리즘 자바
- Java
- Android 12 대응
- Android ProgressBar
- Kotlin FCM
- OkHttp Interceptor
- 안드로이드 fcm
- 안드로이드 카카오 로그인
- 카카오 알고리즘
- 안드로이드
- Android WebView
- Android
- 66챌린지
Archives
- Today
- Total
Developer Geek
갤러리 접근: 프로필 이미지 변경 본문
반응형
개요
시나리오
프로필 이미지를 클릭하면, 갤러리 접근 권한을 확인한 후 디바이스 갤러리에 접근하여 이미지를 선택해 프로필 이미지를 변경하는 앱을 만들도록 한다.
실행화면
Code
Manfifest.xml, 갤러리 접근 권한 추가
manifest 태그 안에 아래 코드를 삽입한다.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Mainfest.xml 전체코드
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myprofileactivity">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyProfileActivity">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
activity_main.xml, UI 만들기
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:id="@+id/ivProfile"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginTop="20dp"
android:background="?attr/selectableItemBackground"
android:src="@mipmap/ic_launcher"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:text="닉네임"
android:textColor="@color/black"
android:textSize="20sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivProfile" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt, 갤러리 접근 및 프로필 이미지 바꾸기
class MainActivity : AppCompatActivity() {
lateinit var ivProfile: ImageView
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
initImageViewProfile()
}
private fun initImageViewProfile() {
ivProfile = findViewById(R.id.ivProfile)
ivProfile.setOnClickListener {
when {
// 갤러리 접근 권한이 있는 경우
ContextCompat.checkSelfPermission(
this,
android.Manifest.permission.READ_EXTERNAL_STORAGE
) == PackageManager.PERMISSION_GRANTED
-> {
navigateGallery()
}
// 갤러리 접근 권한이 없는 경우 & 교육용 팝업을 보여줘야 하는 경우
shouldShowRequestPermissionRationale(android.Manifest.permission.READ_EXTERNAL_STORAGE)
-> {
showPermissionContextPopup()
}
// 권한 요청 하기(requestPermissions) -> 갤러리 접근(onRequestPermissionResult)
else -> requestPermissions(
arrayOf(android.Manifest.permission.READ_EXTERNAL_STORAGE),
1000
)
}
}
}
// 권한 요청 승인 이후 실행되는 함수
override fun onRequestPermissionsResult(
requestCode: Int,
permissions: Array<out String>,
grantResults: IntArray
) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults)
when (requestCode) {
1000 -> {
if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED)
navigateGallery()
else
Toast.makeText(this, "권한을 거부하셨습니다.", Toast.LENGTH_SHORT).show()
}
else -> {
//
}
}
}
private fun navigateGallery() {
val intent = Intent(Intent.ACTION_PICK)
// 가져올 컨텐츠들 중에서 Image 만을 가져온다.
intent.type = "image/*"
// 갤러리에서 이미지를 선택한 후, 프로필 이미지뷰를 수정하기 위해 갤러리에서 수행한 값을 받아오는 startActivityForeResult를 사용한다.
startActivityForResult(intent, 2000)
}
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
// 예외처리
if (resultCode != Activity.RESULT_OK)
return
when (requestCode) {
// 2000: 이미지 컨텐츠를 가져오는 액티비티를 수행한 후 실행되는 Activity 일 때만 수행하기 위해서
2000 -> {
val selectedImageUri: Uri? = data?.data
if (selectedImageUri != null) {
ivProfile.setImageURI(selectedImageUri)
} else {
Toast.makeText(this, "사진을 가져오지 못했습니다.", Toast.LENGTH_SHORT).show()
}
}
else -> {
Toast.makeText(this, "사진을 가져오지 못했습니다.", Toast.LENGTH_SHORT).show()
}
}
}
private fun showPermissionContextPopup() {
AlertDialog.Builder(this)
.setTitle("권한이 필요합니다.")
.setMessage("프로필 이미지를 바꾸기 위해서는 갤러리 접근 권한이 필요합니다.")
.setPositiveButton("동의하기") { _, _ ->
requestPermissions(arrayOf(android.Manifest.permission.READ_EXTERNAL_STORAGE), 1000)
}
.setNegativeButton("취소하기") { _, _ -> }
.create()
.show()
}
}
반응형
'안드로이드' 카테고리의 다른 글
Android RecyclerView with DataBinding Example (0) | 2021.12.03 |
---|---|
Android Splash Screen 예제(Kotlin) (0) | 2021.12.02 |
Android DB - SharedPreferences 예제(Kotlin) (0) | 2021.11.10 |
안드로이드 원형 버튼 만들기 (4) | 2021.11.08 |
Android 키보드 생성 시, Bottom Navigation Hide (0) | 2021.10.28 |
Comments