일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드개발레벨업교과서
- IntentTestRule
- 생명주기
- 뷰변경 감지
- binding adapter
- Error:Execution failed for task ':app:mergeDebugResources'
- searchview
- adapter
- 안드로이드스튜디오
- high order function
- 리사이클러뷰
- 테마 아이콘
- 안드로이드13
- Android
- espresso
- Fragment 수동 추가
- 코딜리티
- viewholder
- Fragment에서 Activity의 함수 사용하기
- ActivityTestRule
- 재사용
- 스와이프
- 코틀린
- recyclerview
- fragment
- 구분선
- ui test
- LayoutManger
- 안드로이드
- 고차함수
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
MaxSliceSum A non-empty array A consisting of N integers is given. A pair of integers (P, Q), such that 0 ≤ P ≤ Q < N, is called a slice of array A. The sum of a slice (P, Q) is the total of A[P] + A[P+1] + ... + A[Q]. Write a function: class Solution { public int solution(int[] A); } that, given an array A consisting of N integers, returns the maximum sum of any slice of A. For example, given a..
https://stackoverflow.com/a/46862320 How are Android touch events delivered? I'm not asking how to handle touch events, but what is going on behind the scenes? If there are several nested widgets, what order do they see the events in? Does the developer have any control ove... stackoverflow.com
EquiLeader A non-empty array A consisting of N integers is given. The leader of this array is the value that occurs in more than half of the elements of A. An equi leader is an index S such that 0 ≤ S < N − 1 and two sequences A[0], A[1], ..., A[S] and A[S + 1], A[S + 2], ..., A[N − 1] have leaders of the same value. For example, given array A such that: A[0] = 4 A[1] = 3 A[2] = 4 A[3] = 4 A[4] ..
https://stackoverflow.com/a/51299672 Difference of setValue() & postValue() in MutableLiveData There are two ways that make change value of MutableLiveData. But what is difference between setValue() & postValue() in MutableLiveData. I could not find documentation for same. Here is class stackoverflow.com 문서에 따르면 setValue(): active obsever가 있으면 값이 전달됩니다. 이 메소드는 기본 스레드에서 호출해야합니다. postValue(): 주어진 ..