반응형 Android16 [Android] Compose Auto Scroll pager 자동으로 Scroll 되고 사용자가 Scroll 할 수 있는 Pager 가 필요한 경우가 있다. 얼마전까지 Accompanist 에 있었지만 deprecated 되어서 구현했다. https://play.google.com/store/apps/details?id=com.danchoo.tagalbum&hl=ko 태그앨범 - Google Play 앱사진과 앨범을 태그로 관리하세요. 결혼식, 팬클럽, 동호회등 원하는 카테고리를 만들어 정리해보세요. 사진에 태그를 설정하여 손쉽게 찾아보세요!play.google.com 중요한 것은 pagerState의 현재 page 값을 받아오는 state다.pagerState.settledPageThe page that is currently "settled". This is.. 2023. 7. 24. [Android] Compose 다중 이벤트 방지 Compose 를 사용하다보면 버튼을 클릭했을때 중복 이벤트가 발생하는 것을 막아야 할 때가 있다. 처음 이벤트만 통과시키고 특정 시간동안 이벤트를 무시한다. 처음 이벤트가 발생 후 다른 이벤트가 연속적으로 발생하면연속적으로 이벤트가 들어오지 않을때까지 이벤트를 무시한다. package com.danchoo.utils.commonfun (() -> Unit).throttleFirst(time: Long = 200L) { MultipleEventPrevention.processEvent(time) { this() }}fun ((T) -> Unit).throttleFirst(value: T, time: Long = 200L) { MultipleEventPrevention.processEvent.. 2023. 7. 24. Caused by: org.gradle.api.GradleException: 'compileDebugJavaWithJavac' task (current target is 1.8) and 'kaptGenerateStubsDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version. Android Studio 를 업데이트 하고 Gradle 업데이트를 하니 아래와 같은 에러가 발생했다. Caused by: org.gradle.api.GradleException: 'compileDebugJavaWithJavac' task (current target is 1.8) and 'kaptGenerateStubsDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version. compileOptions에서 JavaVersion 을 업데이트 하면 된다.Gradle 파일에 따라 아래와 같이 수정하면 된다.https://play.google.com/store/apps/detail.. 2023. 6. 16. [Compose] Compose Image center crop not working 이미지를 배경으로 설정 하려고 했지만이미지 사이즈가 변경 되지도 않고 Center Crop 속성이 적용되지 않는 버그가 있었다. 재현되는 버전Compose Compiler Version : 1.4.4Compose Version : 1.4.0 https://play.google.com/store/apps/details?id=com.danchoo.tagalbum&hl=ko 태그앨범 - Google Play 앱사진과 앨범을 태그로 관리하세요. 결혼식, 팬클럽, 동호회등 원하는 카테고리를 만들어 정리해보세요. 사진에 태그를 설정하여 손쉽게 찾아보세요!play.google.com 배경으로는 설정을 해야 하고 이미지의 height 가 Component 보다 커지는 이상한? 버그가 있었다. ConstraintLayo.. 2023. 5. 15. 이전 1 2 3 4 다음 반응형