일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 대한항공
- 스페인광장
- 아시아나
- 연금저축펀드
- 세비야
- swiftUI
- 스쿠버다이빙
- 러브스플리트
- 러브자그레브
- 푸켓여행
- SwiftUI #Skeleton #데이터갱신
- Concurrency #Swift #Combine
- 그라나다
- 크로아티아
- 지팍스페인
- Device 등록
- 강릉
- 괌 자유여행
- xcode
- cocoapod
- Swift #Concurrency #쓰레드
- Cocoapods #PrivateRepo #SpecRepo
- 스페인여행
- Gradle
- 시밀란
- 공기먹는다이버스
- 스플리트
- 라이브러리
- 도심공항
- 리브어보드
- Today
- Total
목록전체 글 (110)
JEP's Diary
Import Samples from GitHubAndroid Studio provides easy access to import Android code samples from GitHub and is the recommended method to retrieve Android code samples.To import a code sample into Android Studio:In the Android Studio menu, select File > Import Sample to open the Import Sample wizard.Select a sample to import and click Next.Specify the application name and project location if dif..
Recycler + Switch Button 1. 라이브러리 추가Project Structure > app > Dependencies > + > Library Dependency > recyclerview 추가 2. 레이아웃 구성activity_recycler_switch.xml123456789101112 Colored by Color Scriptercs row_switch.xml123456789101112131415161718192021 Colored by Color Scriptercs 3. Adapter 생성SwitchRecyclerAdapter.java12345678910111213141516171819202122232425262728293031323334353637383940414243444546..
RecyclerView RecyclerView는 리스트와 유사하지만, 동적으로 변하는 리스트나 large sets of views에 더 적합하다.LayoutManager - 아이템의 항목 배치 1. 라이브러리 추가Project Structure > app > Dependencies > + > Library Dependency > cardview, recyclerview 추가 2. 레이아웃 구성main.xml123456789101112 Colored by Color Scriptercs row_general.xml12345678910111213141516171819202122232425262728293031 Colored by Color Scriptercs 3. Adapter 생성CustomAdapter.j..