Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 안드로이드 스튜디오
- Gradle
- 레트로핏
- Kotlin
- WebView
- image
- MVVM
- coroutine
- 스튜디오
- 깃헙
- 안드로이드
- 에러
- Github
- dart
- 안스
- 코틀린
- error
- ADB
- studio
- RecyclerView
- Android
- viewpager
- 웹뷰
- 안드로이드스튜디오
- GIT
- 코루틴
- Retrofit
- 유튜브
- build
- 의존성주입
Archives
- Today
- Total
코딩하는 일용직 노동자
SeekBar 테두리 색상이 보이는 현상 수정. 본문
SeekBar를 rotate 해서 VerticalSeekBar로 사용하는중에 프로그레스바의 가장자리에 1dp의 외곽선이 보이는 현상이 있었습니다.
프로그레스바의 drawable 파일을 살펴봐도 애초에 외곽선을 주는 코드는 없었습니다.
아무래도 기본적으로 이렇게 보이는 문제인듯 했는데
막상 쉽게 해결하는 방법이 있었습니다.
progress 의 디자인에 top, bottom, left 를 -1dp씩 추가해주니 테두리가 사라져보였습니다.
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="#3D8BFF" />
<corners android:radius="15dp" />
</shape>
</item>
<item android:id="@android:id/progress"
android:top="-1dp"
android:bottom="-1dp"
android:left="-1dp">
<clip>
<shape>
<solid android:color="#80868B" />
<corners android:radius="15dp" />
</shape>
</clip>
</item>
</layer-list>
'안드로이드' 카테고리의 다른 글
CoroutineFlow에서 Hot Stream과 Cold Stream 이란? (0) | 2024.09.07 |
---|---|
android:duplicateParentState 속성에 대하여... (0) | 2024.07.24 |
java.lang.SecurityException: Writable dex file '...classes2.dex' is not allowed. 에러 해결 (0) | 2024.05.27 |
Compose Row&Column 의 배치속성 (0) | 2024.05.21 |
안드로이드 기기 해상도와 dpi 정보 얻기&수정하기 (0) | 2024.04.29 |