일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Gradle
- Binding Adapter
- imageview
- fragment
- 취업
- themes.xml
- 주석
- 안드로이드
- Safe Args
- hilt
- nav_graph
- asLiveData()
- 일렉트론
- 테마
- Datastore
- 면접
- 스플래시
- TypeConverter
- recyclerview
- Android
- kotlin
- BottomNavigationView
- ViewModel
- Navigation Component
- Jetpack Compose
- room
- electron
- Livedata
- android studio
- 개발자
- Today
- Total
목록전체 글 (48)
나만 보는 일기장
java.lang.IllegalStateException: There are multiple DataStores active for the same file: [...] You should either maintain your DataStore as a singleton or confirm that there is no two DataStore's active on the same file (by confirming that the scope is cancelled). 로그인 기능을 구현할 때 메인 액티비티에서 DataStore에 접근해 저장된 토큰값이 있는지 확인하고 없으면 로그인 화면으로 넘기는 방식을 구현하려 했는데, 로그인을 처리하는 액티비티에서도 DataStore를 사용해서 그런지 로그인 화면으..
▼ 새로 나온 Core SplashScreen API를 확인해보세요!!! [Splash Screen] Core SplashScreen API를 이용해 Splash Screen 구현하기 스플래시 화면이란, 앱 실행 직후 화면이 로딩되는 동안 노출되는 화면으로, 빈칸이 아닌 앱이나 브랜드의 로고 등을 표시함으로써 UX를 높이는 역할을 합니다. 또, 스플래시 화면에서 앱의 버전 patrick-dev.tistory.com Splash Screen은 애플리케이션 실행 시 사용자에게 잠시 동안 보이는 화면으로, 보통 어플의 로고 등을 보여줍니다. 먼저 themes.xml에 Splash에서 쓸 새로운 스타일을 만들어 주어야 합니다. windowBackground는 Splash Screen에서 표시될 화면, windo..
구글링을 하거나 강의를 보다 보면 사람들이 styles.xml이라는 파일을 쓰는 것을 볼 수 있는데요, 그런데 여러분의 프로젝트에는 styles.xml이 보이지 않을 겁니다. 왜냐하면 styles.xml은 themes.xml로 변경되었기 때문이죠! themes.xml을 사용하시면 됩니다.
private fun hasInternetConnection(): Boolean { val connectivityManager = getApplication().getSystemService( Context.CONNECTIVITY_SERVICE ) as ConnectivityManager val activeNetwork = connectivityManager.activeNetwork ?: return false val capabilities = connectivityManager.getNetworkCapabilities(activeNetwork) ?: return false return when { capabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIF..
Room이나 DataStore 등을 사용할 때 Flow를 쓰게 되는데, 이를 LiveData로 변환해주어야 할 경우가 생깁니다. 이때 바로 .asLiveData() 함수를 호출해주면 됩니다.
데이터베이스에는 복잡한 구조를 가진 커스텀 클래스를 넣기 어렵기 때문에 이를 Int, String형 같은 원시 타입으로 변환(직렬화) 해주어야 합니다. 이때 이 직렬화와 역직렬화를 수행하기 위해 만드는 게 바로 Type Converter입니다. data class Result( @SerializedName("aggregateLikes") val aggregateLikes: Int, @SerializedName("cheap") val cheap: Boolean, @SerializedName("dairyFree") val dairyFree: Boolean, @SerializedName("extendedIngredients") val extendedIngredients: List, @SerializedName..