일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- espresso
- 뷰변경 감지
- ui test
- 코틀린
- Android
- Fragment 수동 추가
- viewholder
- 안드로이드
- 안드로이드스튜디오
- Error:Execution failed for task ':app:mergeDebugResources'
- binding adapter
- high order function
- 고차함수
- LayoutManger
- 안드로이드개발레벨업교과서
- 리사이클러뷰
- 안드로이드13
- 스와이프
- 생명주기
- 테마 아이콘
- Fragment에서 Activity의 함수 사용하기
- searchview
- recyclerview
- 코딜리티
- IntentTestRule
- 재사용
- fragment
- 구분선
- adapter
- ActivityTestRule
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
https://github.com/material-components/material-components-android/releases?after=1.1.0-beta01 material-components/material-components-android Modular and customizable Material Design UI components for Android - material-components/material-components-android github.com 우선 Chip은 1.1.0에서 많은 변경점이 있었고 보여지는 부분만 수정했기 때문에 다른 변경점이나 문제점은 확인하지 않았다. 1. 기본 Padding이 생김 chip에 기본적으로 8dp 짜리 padding이 생겼다. 기존에 딱..
BadgeDrawable과 같은 Material에 포함되어 있는 뷰를 사용할때에 App theme를 Theme.AppCompat로 사용하고 있을 때 생기는 크래시이다. Material view들을 사용하기 위해서는 위와 같이 MaterialComponents theme를 상속받아야 한다. 하지만 MaterialComponents에 의해 작동방식이나 뷰의 모양이 변할 수 있고 이를 원치 않을 때에는 Bridge를 사용하면 된다. https://material.io/develop/android/docs/getting-started/ Getting Started - Material Components for Android Getting started with Material Components for Andr..
문제 설명 직사각형을 만드는 데 필요한 4개의 점 중 3개의 좌표가 주어질 때, 나머지 한 점의 좌표를 구하려고 합니다. 점 3개의 좌표가 들어있는 배열 v가 매개변수로 주어질 때, 직사각형을 만드는 데 필요한 나머지 한 점의 좌표를 return 하도록 solution 함수를 완성해주세요. 단, 직사각형의 각 변은 x축, y축에 평행하며, 반드시 직사각형을 만들 수 있는 경우만 입력으로 주어집니다. 제한사항 v는 세 점의 좌표가 들어있는 2차원 배열입니다. v의 각 원소는 점의 좌표를 나타내며, 좌표는 [x축 좌표, y축 좌표] 순으로 주어집니다. 좌표값은 1 이상 10억 이하의 자연수입니다. 직사각형을 만드는 데 필요한 나머지 한 점의 좌표를 [x축 좌표, y축 좌표] 순으로 담아 return 해주세요..
https://proandroiddev.com/livedata-with-single-events-2395dea972a8 LiveData with single events You may searched for SingleLiveEvent in the Internet to find a good solution for a LiveData that send events once. There are multiple… proandroiddev.com https://medium.com/androiddevelopers/livedata-with-snackbar-navigation-and-other-events-the-singleliveevent-case-ac2622673150 LiveData with SnackBar, ..