일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 뷰변경 감지
- ui test
- searchview
- fragment
- 안드로이드스튜디오
- 안드로이드13
- 생명주기
- Android
- Error:Execution failed for task ':app:mergeDebugResources'
- Fragment 수동 추가
- 재사용
- 리사이클러뷰
- 안드로이드
- 코틀린
- high order function
- recyclerview
- 고차함수
- 구분선
- 코딜리티
- espresso
- IntentTestRule
- 안드로이드개발레벨업교과서
- LayoutManger
- 스와이프
- binding adapter
- viewholder
- adapter
- ActivityTestRule
- Fragment에서 Activity의 함수 사용하기
- 테마 아이콘
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩
coordinatorlayout 사용할 때에 스크롤을 했을 때 안되거나 애니메이션이 작동하지 않고 스크롤처럼 작동할때가 있다. 그때는 사라질 객체에 scroll flag 옵션을 주면된다. scroll | enterAlways -> 스크롤 옵션 scroll | enterAlways | snap -> 애니메이션 옵션
개발을 하며 마치 윈도우의 파일 디렉토리 같은 구조로 데이터를 분리해야 하는 이슈가 생겼다. 다양한 자료구조를 찾아보았는데 Multimap (Guava: Google Core Libraries for Java 21.0 API) 이 있다는 것을 알게 되었다. multimap은 동일한 키를 가진 여러개의 value를 가질 수가 있다. Multimap campus = ArrayListMultimap.create(); campus.put("first", "seaoul"); campus.put("first", "korea"); campus.put("first", "yonsei"); Collection child = campus.get("first"); 이때 value는 List값으로 리턴을 해준다.
https://developer.android.com/reference/android/widget/SearchView.html#setIconified(boolean) 불러오는 중입니다... public void setIconified (boolean iconify) boolean: a true value will collapse the SearchView to an icon, while a false will expand it. searchView.setIconified(false); setIconfied(false)를 사용하면 진입시에 searchview가 확장되며 focus가 가게되고 자동으로 키보드가 올라오게 된다. 이 설정은 manifests의 activity 설정인 android:wind..
CountDiv Write a function: class Solution { public int solution(int A, int B, int K); } that, given three integers A, B and K, returns the number of integers within the range [A..B] that are divisible by K, i.e.: { i : A ≤ i ≤ B, i mod K = 0 } For example, for A = 6, B = 11 and K = 2, your function should return 3, because there are three numbers divisible by 2 within the range [6..11], namely 6..