깨알 개념 122

[Android] WorkManager - 개요

#1 WorkManager는 '지연 가능한 백그라운드 작업'의 관리자 WorkManager를 사용한 백그라운드 작업 - Kotlin | Android DevelopersAndroid에는 보장된 백그라운드 작업을 위한 다수의 옵션이 있으며, 이러한 옵션에는 각각 다양한 장단점이 있습니다. Android용 WorkManager API는 백그라운드 작업을 간편하게 만듭니다. WorkManager는 예developer.android.comWorkManager는 Android Jetpack에 속하는 백그라운드 작업 관리 시스템 라이브러리다. 모든 백그라운드는 아니고, '지연 가능한 백그라운드 작업'를 관리한다. '지연 가능한 작업'이란, 즉시 실행하지 않아도 되는 작업을 의미한다. 예를 들어, 서버와의 데이터 동..

[Android] Notifications - Action 버튼 클릭 시 알림 Cancel

#1 이전 글 [Android] Notifications - PendingIntent#1 이전 글 [Android] Notifications - 기초#1 개요 알림 개요  |  Views  |  Android Developers이 페이지는 Cloud Translation API를 통해 번역되었습니다. 알림 개요 컬렉션을 사용해 정리하기 내 환경설정을 기준kenel.tistory.com위 게시글의 완성된 앱을 일부 수정해서, 알림의 Action 버튼을 클릭하면 해당 알림이 제거(Cancel)되게 만들어본다. #2 PendingIntent.getBroadcast()Intent는 안드로이드에서 컴포넌트(Activity, Service, BroadcastReceiver, ContentProvider) 간 통신을..

[Android] Notifications - PendingIntent

#1 이전 글 [Android] Notifications - 기초#1 개요 알림 개요  |  Views  |  Android Developers이 페이지는 Cloud Translation API를 통해 번역되었습니다. 알림 개요 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세kenel.tistory.com위 게시글의 완성된 앱을 일부 수정해서, 알림 메시지 클릭 시의 동작을 구현해본다. #2 PendingIntent PendingIntent  |  Android Developers developer.android.com Intent는 안드로이드에서 컴포넌트(Activity, Service, BroadcastReceiver, ContentProvider) 간 통신을 위해 사용되는..

[Android] Notifications - 기초

#1 개요 알림 개요  |  Views  |  Android Developers이 페이지는 Cloud Translation API를 통해 번역되었습니다. 알림 개요 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. 알림은 사용자에게 리마인더, 다른 사람과developer.android.com앱에게 있어 알림(Notifications)는 빼놓을 수 없는 구성 요소다. 알림을 기초적으로 구현해본다. #2 SDK, 권한, View 설정#2-1 최소 SDK 설정Minimum SDK를 API 기준 26 이상으로 설정한다. Notifications 대부분 기능의 최소 요구 API가 26이기 때문이다. #2-2 AndroidManifest.xml에서 알림 권한 설정 알림 발생..

[Android] Retrofit - Post

#1 이전 글 [Android] Retrofit - 기초#1 이전 글 [Android] Retrofit - 배경과 구조#1 Restrofit의 배경#1-1 REST API REST API (REpresentational State Transfer Application Programming Interface)#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는kenel.tistory.com위 게시글의 완성된 앱을 일부 수정해서, 서버에 Post 요청을 해본다. (참조: REST API)#2 코드 수정#2-1 AlbumService.kt// package com.example.postimport retrofit2.Responseimpor..

[Android] Retrofit - Logging, Timeout 관리 (Interceptor)

#1 이전 글 [Android] Retrofit - 기초#1 이전 글 [Android] Retrofit - 배경과 구조#1 Restrofit의 배경#1-1 REST API REST API (REpresentational State Transfer Application Programming Interface)#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는kenel.tistory.com위 게시글의 완성된 앱을 일부 수정해서, Retrofit Instance가 통신 기록(Log)을 남기게 만든다. 또, Retrofit Instance가 서버-클라이언트 간 통신을 성공 또는 실패(Timeout)로 판단하는 규칙을 바꿔본다. #2 Int..

[Android] Retrofit - MVVM 구조

#1 이전 글 [Android] Retrofit - 기초#1 이전 글 [Android] Retrofit - 배경과 구조#1 Restrofit의 배경#1-1 REST API REST API (REpresentational State Transfer Application Programming Interface)#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는kenel.tistory.com이전 게시글에서는 userId를 하드 코딩했지만, 여기에서는 사용자가 원하는 userId를 요청하고 그에 응답할 수 있게 만들어본다. 하는 김에 MVVM적인 구조로 만든다.#2 MVVM 패턴 [Android] MVVM 구조 한눈에 보기#1 안드로이드 ..

[Android] Retrofit - 기초

#1 이전 글 [Android] Retrofit - 배경과 구조#1 Restrofit의 배경#1-1 REST API REST API (REpresentational State Transfer Application Programming Interface)#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는 RESTful API는 서버의 자원(Resource)을 두고kenel.tistory.com이전 글에서 Retrofit의 배경과 구조를 살펴봤다. 이번엔 실제 Retrofit을 사용한 앱을 만들어본다. #2 통신할 서버 JSONPlaceholder - Free Fake REST API{JSON} Placeholder Free fake ..

[Android] Retrofit - 배경과 구조

#1 Restrofit의 배경#1-1 REST API REST API (REpresentational State Transfer Application Programming Interface)#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는 RESTful API는 서버의 자원(Resource)을 두고, 클라이언트와 서버 간의 통신 방법을 규정하는 API(Application Programming Interface)다. 자kenel.tistory.com먼저, 클라이언트-서버 간 통신에서 사용되는 REST API에 대해 알아야 한다. #1-2 OkHttp Overview - OkHttpOkHttp HTTP is the way moder..

REST API (REpresentational State Transfer Application Programming Interface)

#1 무엇(What)에 대한 API인가?#1-1 개요REST(REpresentational State Transfer) 또는 RESTful API는 서버의 자원(Resource)을 두고, 클라이언트와 서버 간의 통신 방법을 규정하는 API(Application Programming Interface)다. 자원이란 데이터베이스에 저장된 데이터다. 블로그를 예로 들면 게시글, 댓글 등이 자원이다. 이 자원은 서로 구분할 수 있는 고유한 식별자(URI)를 가지고 있다. REST API에서는 URI에 속하는 하위 범주인 URL을 자원의 식별자로서 사용한다. 그리고 이 URL이 바로 우리가 일상 생활에서 사용하는 단어인 인터넷 주소다. #1-2 URL(Uniform Resource Locator)의 구조URL의 ..