목록MVVM (4)
막무가내 삽질 블로그
http://gitignore.io/ gitignore.io Create useful .gitignore files for your project www.toptal.com kotlin android android studio
medium.com/@onkart10/migrating-from-fabric-to-firebase-crashlytics-e8819933c484 Migrating from Fabric to Firebase Crashlytics Google has now completely migrated from Fabric to Firebase crashlytics. If you are still using Fabric SDK and you are not able to see the… medium.com
이 글을 통해 참고 하실려는 분들은 다른 블로그를 참고하세요..... 아직 공부중입니다 안드로이드 룸에 대해 정리 한다. 룸은 SQLite의 기능을 모두 사용할 수 있고, DB로의 접근을 쉽게 도와주는 라이브러리! 자세한 내용은 https://developer.android.com/training/data-storage/room?hl=ko 룸의 구성 요소 Entity : 데이터베이스 안에 있는 테이블을 자바나 코틀린 클래스로 나타냄. 데이터 모델 클래스이다. DAO : Database Access Object, 디비에 접근해 insert,delete 등을 수행하는 메소드를 가지고 있다. Database : 앱에 영구 저장되는 데이터와 연결을 위한 액세스 지점, 테이블과 버전을 정의하는 곳 Entity @..
참:http://blog.dramancompany.com/2016/08/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%EC%97%90-%ED%85%8C%EC%8A%A4%ED%8A%B8-%EB%8F%84%EC%9E%85%ED%95%98%EA%B8%B0/ 우선 두개의 차이점은 C -> P 로 바뀐다. MVC에서는 Model과 View가 연결되어 있지만 MVP 에서는 연결되어 있지 않다. 안드로이드에서 MVC는 액티비티나 프래그먼트에 컨트롤러와 뷰에 관한 코드를 전부 넣는다. 따라서 MVC패턴이라고 하기에 애매하고 코드가 복잡해진다.(웹에서는 MVC가 통용, 안드로이드에서는 불가능? 힘듬) MVP는 Presenter를 만들어 모델과 뷰를 분리 해주고 Presenter를 통해..