일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드개발레벨업교과서
- searchview
- high order function
- ui test
- IntentTestRule
- 코딜리티
- adapter
- 스와이프
- LayoutManger
- Android
- 생명주기
- 코틀린
- 구분선
- 리사이클러뷰
- recyclerview
- 뷰변경 감지
- 재사용
- Fragment에서 Activity의 함수 사용하기
- 안드로이드
- Fragment 수동 추가
- viewholder
- 안드로이드13
- ActivityTestRule
- 테마 아이콘
- fragment
- 안드로이드스튜디오
- espresso
- Error:Execution failed for task ':app:mergeDebugResources'
- 고차함수
- binding adapter
- Today
- Total
목록전체 글 (241)
룬아님의 취중코딩

https://stackoverflow.com/a/10159345 Show dialog only using Context instead of Activity instance I could show dialog if I uses an Activity instance but when I uses Context or Application Context instance Dialog is not showing. AlertDialog.Builder builder = new AlertDialog.Builder(activity); ... stackoverflow.com Toast를 제외하고 다른 UI 구성 요소는 Application 컨텍스트와 함께 작동하지 않습니다. [android 2.1 때 변경] 응용 프로그램 ..

원형 리플효과 android:background="?selectableItemBackgroundBorderless" 채워지게 보이는 리플 효과 android:background="?selectableItemBackground" https://aroundck.tistory.com/5108 [android] Ripple 에 대해 알아보자 [android] Ripple 에 대해 알아보자 https://blog.stylingandroid.com/ripples-part-1/ https://guides.codepath.com/android/ripple-animation - Ripple 자체는 Android L ( LOS ) 부터 나왔다. 그러나 필자는 R.. aroundck.tistory.com

스타일에 투명 옵션인 windowIsTranslucent을 true로 하고 screenOrientation 고정 옵션을 사용했을 때 강제 종료 되는 문제이다. 해결 방법은 android:screenOrientation="portrait" 옵션을 지워주는 것이다. android:screenOrientation="unspecified" 위의 옵션은 기본값으로 해당 옵션을 사용하면 시스템에게 Orientation을 맡기게 된다. 투명 옵션이 적용된 경우 투명 옵션의 특성 때문에 부모의 옵션을 따라가게 된다. 그렇기 때문에 부모에게 potrait 옵션을 주게 되면 해당 뷰도 세로 고정이 된다. https://developer.android.com/guide/topics/manifest/activity-eleme..

TapeEquilibrium A non-empty array A consisting of N integers is given. Array A represents numbers on a tape. Any integer P, such that 0 < P < N, splits this tape into two non-empty parts: A[0], A[1], ..., A[P − 1] and A[P], A[P + 1], ..., A[N − 1]. The difference between the two parts is the value of: |(A[0] + A[1] + ... + A[P − 1]) − (A[P] + A[P + 1] + ... + A[N − 1])| In other words, it is the..