개발공부

    [Kotlin] MVVM Room Database : RecyclerView Adapter에 ViewModel LiveData 적용하기 - 간단한 저장소 만들기 3편

    [Kotlin] MVVM Room Database : RecyclerView Adapter에 ViewModel LiveData 적용하기 - 간단한 저장소 만들기 3편

    지난 포스트 [Kotlin] MVVM Room Database 2편 : 간단한 저장소 만들기 - Navigation Graph, NavHostFragment, Insert 구성하기 지난 포스트 [Kotlin] MVVM Room Database 1편 : 간단한 저장소 만들기 - Entity, RoomDatabase, DAO, repository, ViewModel, coroutine, 목표 이 포스트는 총 5편으로 이루어져 있습니다. 밑줄 친 항목이 이번.. underdog11.tistory.com 목표 이 포스트는 총 5편으로 이루어져 있습니다. 밑줄 친 항목이 이번 포스트에서 다룰 항목 입니다. RoomDatabase 개념 Roomdatabase의 기본 요소인 Entity, Database, Dao 개..

    [Kotlin] MVVM Room Database : Navigation Graph 사용법, NavHostFragment, Insert 구성하기 간단한 저장소 만들기 - 2편

    [Kotlin] MVVM Room Database : Navigation Graph 사용법, NavHostFragment, Insert 구성하기 간단한 저장소 만들기 - 2편

    지난 포스트 [Kotlin] MVVM Room Database 1편 : 간단한 저장소 만들기 - Entity, RoomDatabase, DAO, repository, ViewModel, coroutine, 목표 이 포스트는 총 5편으로 이루어져 있습니다. 밑줄 친 항목이 이번 포스트에서 다룰 항목 입니다. Roomdatabase의 기본 요소인 Entity, Database, Dao 개념/구현 (1편) LiveData, ViewModel, Repository를.. underdog11.tistory.com 목표 이 포스트는 총 5편으로 이루어져 있습니다. 밑줄 친 항목이 이번 포스트에서 다룰 항목 입니다. RoomDatabase 개념 Roomdatabase의 기본 요소인 Entity, Database, Da..

    [Kotlin] 선형리스트를 활용한 문제풀이 LeetCode: Delete Node in a Linked List

    [Kotlin] 선형리스트를 활용한 문제풀이 LeetCode: Delete Node in a Linked List

    문제 Write a function to delete a node in a singly-linked list. You will not be given access to the head of the list, instead you will be given access to the node to be deleted directly. It is guaranteed that the node to be deleted is not a tail node in the list. linked list(선형리스트)에서 하나의 node를 지우는 함수를 만들어야합니다. linked list는 아래와 같습니다. 이 문제에선 linkedlist에서 가장 앞에있는 node를 접근할수없게됩니다. 그리고 마지막자리 node는 지워질수..

    [Kotlin] MVVM Room Database : Entity, RoomDatabase, DAO, repository, ViewModel, coroutine, MVVM 구성하기 - 간단한 저장소 만들기 1편

    [Kotlin] MVVM Room Database : Entity, RoomDatabase, DAO, repository, ViewModel, coroutine, MVVM 구성하기 - 간단한 저장소 만들기 1편

    목표 이 포스트는 총 5편으로 이루어져 있습니다. 밑줄 친 항목이 이번 포스트에서 다룰 항목 입니다. RoomDatabase 개념 Roomdatabase의 기본 요소인 Entity, Database, Dao 개념/구현 (1편) LiveData, ViewModel, Repository를 이용하여 MVVM 아키텍처 구성(1편) Insert 구성 Navigation Graph , NavHostFragment추가(2편) 각 list, update, add fragment의 layout 및 프래그먼트 구현(2편) Add Fragment를 여는 플로팅 버튼 추가 (2편) DB browser를 통해 database 확인(2편) RecyclerView에 들어갈 ItemLayout과 ListAdapter 추가(3편) R..