일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 생명주기
- 테마 아이콘
- recyclerview
- 스와이프
- 리사이클러뷰
- 안드로이드13
- 코딜리티
- 안드로이드
- Error:Execution failed for task ':app:mergeDebugResources'
- adapter
- ActivityTestRule
- IntentTestRule
- 고차함수
- 안드로이드스튜디오
- fragment
- espresso
- binding adapter
- Fragment 수동 추가
- 재사용
- 뷰변경 감지
- high order function
- searchview
- viewholder
- Android
- ui test
- LayoutManger
- 구분선
- 코틀린
- Fragment에서 Activity의 함수 사용하기
- 안드로이드개발레벨업교과서
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bbOWnw/btqxulZ7v7O/fj7jd6rF53JfDyUOjPGSs0/img.png)
2019/08/07 - [개발/안드로이드 개발 레벨업 교과서] - 1. 안드로이드 개발 레벨업 교과서 Activity 액티비티의 수명주기 종류 메서드명 시점 처리 예 onCreate 생성 시 초기화 처리와 뷰 생성(setContentView 호출) 등 onStart 비표시 시 통신이나 센서 처리를 시작 onRestart 표시 시(재시작만) 보통은 아무것도 하지 않아도 된다. onResume 최전면 표시 필요한 애니메이션 실행 등의 화면 갱신 처리 onPause 일부 표시(일시정지) 상태 애니메이션 등 화면 갱신 처리를 정지 또는 일시정지할 때 필요 없는 리소스를 해제하거나 필요한 데이터를 영속화 onStop 비표시(정지) 상태 통신이나 센서 처리를 정리 onDestroy 폐기 시 필요 없는 리소스를 해제..
GenomicRangeQuery A DNA sequence can be represented as a string consisting of the letters A, C, G and T, which correspond to the types of successive nucleotides in the sequence. Each nucleotide has an impact factor, which is an integer. Nucleotides of types A, C, G and Thave impact factors of 1, 2, 3 and 4, respectively. You are going to answer several queries of the form: What is the minimal im..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/52tzp/btqxEDrDzwV/ssKkRgug525jV0nBK3NQgK/img.jpg)
리사이클러뷰를 사용하면서 특정 위치의 뷰가 보여지는 시점이라던지 더이상 보이지 않게 되는 시점에 해당 뷰의 위치를 가져와야 하는 경우가 종종있습니다. 저의 경우에는 각 뷰의 노출 횟수를 집계하기 위하여 이 리스너를 직접 구현하여 사용하였습니다. https://github.com/myung6024/VisiblePositionChangeListener myung6024/VisiblePositionChangeListener 리사이클러뷰를 사용하면서 특정 위치의 뷰가 보여지는 시점이라던지 더이상 보이지 않게 되는 시점에 해당 뷰의 위치를 알려주는 Recyclerview listener 입니다. - myung6024/VisiblePositionChangeListener github.com 보여지는 View와 가려..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/9mmcW/btqxoQfn3Oc/OXXGe7L9O4KkTS4bZaXh7K/img.png)
MaxCounters You are given N counters, initially set to 0, and you have two possible operations on them: increase(X) − counter X is increased by 1, max counter − all counters are set to the maximum value of any counter. A non-empty array A of M integers is given. This array represents consecutive operations: if A[K] = X, such that 1 ≤ X ≤ N, then operation K is increase(X), if A[K] = N + 1 then o..