김누누
close
프로필 배경
프로필 로고

김누누

  • 분류 전체보기 (252)
    • Deep Dive (49)
      • Kotlin Coroutine (18)
      • Kotlin Flow (6)
      • Test Code (12)
      • Android Jetpack Compose (9)
      • Flutter (4)
    • [Android] Architecture (14)
      • Architecture Pattern (5)
      • [Android] Multi Module (3)
      • [Android] DI (4)
    • [Kotlin] Tech,Study (18)
    • [Android] Tech,Study (65)
      • [Android] Trouble Shoot (20)
      • [Android] Custom (9)
    • Algorithm (13)
    • Computer Science (29)
      • 독서 (8)
      • 프로그래밍 (14)
      • 운영체제 (4)
      • 자료구조 (1)
      • 네트워크 (1)
    • GitHub (1)
    • Python,Django,DRF (13)
    • IOS,Swift (10)
    • 회고 (7)
  • 깃허브
  • 글쓰기
  • 설정

[Android, Kotlin] RecyclerView에서 Swipe Menu 구현하기, Delete 메뉴 + Card View [2]

https://jinudmjournal.tistory.com/112 [Android, Kotlin] RecyclerView에서 Swipe Menu 구현하기, Delete 메뉴 + Card View [1] Swipe Menu with RecyclerView 리싸이클러 뷰 내부에서 item을 슬라이드할 때 DELETE 버튼이 나오도록 코드를 작성한다. 메시지 목록에서 슬라이드해서 메시지를 삭제하는 등에 사용되는 기능이다. 일반적 jinudmjournal.tistory.com 위 포스팅에 이은 2번째 포스팅입니다. Swipe Menu with RecyclerView - ItemTouchHelper 사용 ItemTouchHelper는 RecyclerView에서 스와이프 및 드래그 앤 드롭을 지원하는 유틸리티 클..

  • format_list_bulleted [Android] Tech,Study/[Android] Custom
  • · 2023. 5. 20.
  • textsms
[Android, Kotlin] RecyclerView에서 Swipe Menu 구현하기, Delete 메뉴 + Card View [1]

[Android, Kotlin] RecyclerView에서 Swipe Menu 구현하기, Delete 메뉴 + Card View [1]

Swipe Menu with RecyclerView - 데이터 구성 리싸이클러 뷰 내부에서 item을 슬라이드할 때 DELETE 버튼이 나오도록 코드를 작성한다. 메시지 목록에서 슬라이드해서 메시지를 삭제하는 등에 사용되는 기능이다. 일반적으로 삭제 버튼을 숨겨두었다가, 필요시에 스와이프해서 사용한다. CSV 데이터 읽기 우선 recycler view에 나타낼 데이터를 선정한다. https://www.kaggle.com/datasets/ Find Open Datasets and Machine Learning Projects | Kaggle Download Open Datasets on 1000s of Projects + Share Projects on One Platform. Explore Popular..

  • format_list_bulleted [Android] Tech,Study/[Android] Custom
  • · 2023. 5. 19.
  • textsms

[Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 3 - 문제 해결, 최종 코드

[문제 상황] 기존에 Interceptor와 Refresh 토큰을 활용한 재인증 코드를 작성했는데, 포스팅 1에서 TokenAuthenticator를 활용한 토큰 인증을 구현했다. https://jinudmjournal.tistory.com/86 [Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 1 ❗️오류가 발생해서 리포스팅 했습니다. https://jinudmjournal.tistory.com/88 [Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 2 이전에 작성한 포스팅에서 오류가 발생해서 리포스팅 합니다. jinudmjournal.tistory.com 하지만 위의 방식은 성공적으로 토큰을 불러오나 저장..

  • format_list_bulleted [Android] Tech,Study
  • · 2023. 3. 13.
  • textsms
[Android] API 연동  Multi Part Post 기록 (서버로 이미지 전송)

[Android] API 연동 Multi Part Post 기록 (서버로 이미지 전송)

API 서버에 이미지 + 내용 데이터 전송하기 서버에서 원하는 데이터 형식은 아래와 같다. Posting (게시물)을 서버 쪽으로 POST 할 때 2가지의 값을 multipart/form-data 형식으로 받는다. 이미지 파일을 변환하고 나머지 데이터를 param 형식으로 전송하는 방법을 시도했다. MultiPart 형식으로 데이터를 전송하기 위해 ViewModelScope를 사용했다. ViewModelScope viewModelScope는 viewModel 내부에서 사용되며, lifecycle을 인식하는 코루틴 스코프를 만들 수 있다. 이 방식은 viewModelScope 블럭에서 실행되는 작업들을 별도의 처리 없이 ViewModel이 clear 되는 순간 자동으로 취소하게 할 수 있다. 데이터를 전송..

  • format_list_bulleted [Android] Tech,Study
  • · 2023. 2. 24.
  • textsms
[Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 1

[Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 1

❗️오류가 발생해서 리포스팅 했습니다. https://jinudmjournal.tistory.com/88 [Android, Kotlin] Interceptor + Refresh 토큰을 활용한 재인증 구현 2 이전에 작성한 포스팅에서 오류가 발생해서 리포스팅 합니다. 인증을 진행하는 TokenAuthenticator.kt 클래스에서 오류가 발생했다. header를 재정의하고 테스팅을 진행하였다. [MasterApplication.kt] - 토큰 jinudmjournal.tistory.com 개념 정리 : 재인증 구현 1 수정 코드 : 재인증 구현 2 Refresh Token으로 기존 Access Token을 갱신하는 방법 로그인 인증으로 토큰을 사용하기 위해서 Access 토큰이 리소스로 접근, 일정 시간..

  • format_list_bulleted [Android] Tech,Study
  • · 2023. 2. 22.
  • textsms

sharedPreferences 로 자동로그인 + 데이터 암호화 구현

[ 구현 목록] 1. check box를 통한 자동 로그인 ture/false 기능 구현 2. sharedPreferences로 로그인 데이터 저장 3. 로그인 데이터를 암호화해서 저장 SharedPreferences의 저장방식 - 소규모의 데이터를 앱 안에 XML 파일로 저장하는 저장소 - 아래의 경로로 데이터 저장 /data/data/{package_name}/shared_prefs/{filename}.xml - 안드로이드 스튜디오 디바이스 매니저에서 확인 가능 Security Library 사용 https://developer.android.com/reference/androidx/security/crypto/EncryptedSharedPreferences EncryptedSharedPreferen..

  • format_list_bulleted [Android] Tech,Study
  • · 2023. 2. 21.
  • textsms
  • navigate_before
  • 1
  • ···
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • navigate_next
전체 카테고리
  • 분류 전체보기 (252)
    • Deep Dive (49)
      • Kotlin Coroutine (18)
      • Kotlin Flow (6)
      • Test Code (12)
      • Android Jetpack Compose (9)
      • Flutter (4)
    • [Android] Architecture (14)
      • Architecture Pattern (5)
      • [Android] Multi Module (3)
      • [Android] DI (4)
    • [Kotlin] Tech,Study (18)
    • [Android] Tech,Study (65)
      • [Android] Trouble Shoot (20)
      • [Android] Custom (9)
    • Algorithm (13)
    • Computer Science (29)
      • 독서 (8)
      • 프로그래밍 (14)
      • 운영체제 (4)
      • 자료구조 (1)
      • 네트워크 (1)
    • GitHub (1)
    • Python,Django,DRF (13)
    • IOS,Swift (10)
    • 회고 (7)
전체 방문자
오늘
어제
전체
태그
  • #Coroutine
  • #ViewModel
  • #kotlin
  • #코루틴
  • #Android
  • #코틀린
  • #안드로이드
  • #알고리즘
  • #compose
  • #우테코
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바