본문 바로가기
반응형

전체 글150

[MYSQL] Weather Observation Station 13 ▶ SQL > Aggregation > Weather Observation Station 13 Problem Query the sum of Northern Latitudes (LAT_N) from STATION having values greater than 38.7880 and less than 137.2345. Truncate your answer to 4 decimal places. → 38.7880보다 크고 137.2345보다 작은 LAT_N의 합을 구하고 4번째 자리에서 내림(turncate)해라 Input Format The STATION table is described as follows: My Answer SELECT TRUNCATE(SUM(LAT_N), 4) FROM STATION WH.. 2021. 8. 16.
[Android/Jetpack] AAC - Data Binding View Binding에 이어 Data Binding에 대한 포스팅이다. View Binding은 여러 번 사용해보았는데, 아키텍처를 공부한지 얼마 되지 않아서인지 Data Binding은 아직 생소한 개념이다. View Binding과 Data Binding을 비교해보고 이번 포스팅을 통해 Data Binding에 대한 실습 또한 진행해보려고 한다. Data Binding 레이아웃의 UI 구성 요소를 앱의 데이터 소스와 결합할 수 있는 지원 라이브러리 → xml 파일에 데이터를 연결(binding)하여 사용할 수 있게 도와주는 라이브러리 BEFORE findViewById()를 사용하여 특정 위젯을 찾는 방식이 아닌 (프로그래밍적으로 연결) NOW 레이아웃 파일에서 직접 위젯에 할당 (선언적 방식으로 .. 2021. 8. 11.
[Android] 뷰 바인딩(View Binding) in Activity, Fragment, RecyclerView View Binding에 대한 지식은 아래의 이전 포스팅을 참고하자! [지식] Kotlin Android Extensions deprecated 시간이 좀 지난 일이지만 개발 방식을 조금 바꾸게 되어 정리해본다. 안드로이드 4.1 버전에서 새로운 프로젝트 생성 시 기본 플러그인으로 제공하던 apply plugin: 'kotlin-android-extensions'이 제거되고, junyoung-developer.tistory.com 이번 포스팅은 View Binding을 이용한 구현 방법을 알아볼 예정이다. Activity, Fragment, RecyclerView, Dialog에서의 사용법을 순서대로 설명하며, 앞으로 여러 화면에서의 예시를 추가할 예정이다! View Binding을 사용하기에 앞서 bu.. 2021. 8. 10.
[MYSQL] Weather Observation Station 2 ▶ SQL > Aggregation > Weather Observation Station 2 Problem Query the following two values from the STATION table: The sum of all values in LAT_N rounded to a scale of 2 decimal places. → LAT_N의 모든 값의 합을 소수점 2자리까지 반올림한 값 The sum of all values in LONG_W rounded to a scale of 2 decimal places. → LONG_W의 모든 값의 합을 소수점 2잘까지 반올림한 값 Input Format The STATION table is described as follows: where LAT_N is.. 2021. 8. 9.
[Android] setOnNavigationItemSelectedListener deprecated 해결 인스타그램 클론 코딩을 하는 도중, BottomNavigation을 만들면서 만난 issue입니다. BottomNavigation의 리스너인 setOnNavigationItemSelectedListener를 이용하여 select 이벤트를 완성하려고 했는데, 이번에 업데이트를 하면서 deprecated 된 것을 발견했습니다. BottomNavigationView.OnNavigationItemSelectedListener | Android 개발자 BottomNavigationView.OnNavigationItemSelectedListener public static interface BottomNavigationView.OnNavigationItemSelectedListener implements Navig.. 2021. 8. 3.
[Android/Jetpack] AAC - Room Room Google에서 제공하는 ORM(Object-relational mapping) SQLite에 대한 추상화 레이어를 제공하여 원활한 데이터베이스 액세스를 지원하며 SQLite를 완벽히 활용함 실행 기기에 앱 데이터 캐시를 만들고 네트워크 연결 여부와 관계없이 사용자가 콘텐츠를 탐색할 수 있음 🙋‍♀️ ORM이란? Object Relational Mapping, 객체-관계 매핑 객체 지향 프로그래밍은 클래스를 사용하고 관계성 데이터 베이스에서는 테이블을 사용하기 때문에 객체 모델과 관계형 모델 간에 불일치가 발생함 ORM은 객체 간의 관계를 바탕으로 SQL을 자동으로 생성하여 불일치를 해결함 즉, 객체를 통해 간접적으로 데이터 베이스의 데이터를 다룸 Persistant API라고도 할 수 있음 🙋.. 2021. 8. 3.
반응형