| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- firebase-database
- JNI
- socket-server
- cloud-firestore
- BottomSheetDialog
- Java8
- 워치
- hung-up
- git-push
- AWS
- gradle
- git
- TIZEN
- NoSuchMethodError
- mqtt
- socket-client
- Firebase
- Galaxy Watch
- Android
- 오즈뷰어
- ozd
- ActivityResult-API
- socket.io
- Dva
- mosquitto
- firebase-storage
- Kotlin
- OZViewer
- Flavors
- google-login
- Today
- Total
목록전체 글 (113)
Hyeyeon blog
1. LinearLayoutManager 1-1. 코드에서 지정 layoutManager = LinearLayoutManager(context) 1-2. xml에서 지정 2. GridLayoutManager 2-1. 코드에서 지정 layoutManager = GridLayoutManager(view.context, 2 /* 열 갯수 */) 2-2. xml에서 지정
# ScrollView, RecyclerView에 overScrollMode 속성 추가
1. string.xml 정의 %,2d 2. 사용 android:text="@{@string/price_format(30000)}"
MotionLayout 이란 ConstraintLayout의 서브클래스로 다양한 애니메이션을 제공. ConstraintLayout 2.0에 포함된 새로운 클래스 MotionLayout MotionScene에 정의된 ConstraintSet의 내용으로 화면전환을 지원 MotionScene MotionLayout에 필요한 rule을 정의 애니메이션을 위한 내용을 포함 (ConstraintSets, Transition, KeyFrames 등) Transition ConstraintSets 또는 ConstraintLayout files 간의 전환에 관한 내용을 정의 constraintSetStart: 시작 프레임 정의 constraintSetEnd: 종료 프레임 정의 duration: 전환 애니메이션 수행 시간..
1. Dependecy 설정 Room 버전 정보 implementation "android.arch.persistence.room:runtime:$room_version" kapt "android.arch.persistence.room:compiler:$room_version" testImplementation "android.arch.persistence.room:testing:$room_version" 2. Entity [링크] Room에서 사용할 Entity Class생성 tableName : 사용할 테이블 명 지정 @PrimaryKey: 해당 필드를 기본키로 설정 autoGenerate: autoIncrement 설정 @ColumnInfo: 해당 필드의 테이블 컬럼명 지정(미지정 시 해당 필드와 ..
# notifyItemChanged 호출 시, Refresh 애니메이션 제거recyclerView.setItemAnimator(null);
# git push 에러 발생 remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com. remote: error: Trace: 064235146208ac1c34111e66858bca0a remote: error: See http://git.io/iEPt8g for more information. remote: error: File app/heavy.txt is 144.50 MB; this exceeds GitHub's file size limit of 100.00 MB 1. git-lfs 적용 git lfs install git lfs track "*.e..