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 | 31 |
Tags
- androidStudio
- textfield
- AWS
- MyVoca
- ProGuard
- Python
- GitHub
- android
- Coroutine
- Compose
- Coroutines
- boj
- Hilt
- 백준
- Rxjava
- activity
- TEST
- 암호학
- Kotlin
- pandas
- 코루틴
- livedata
- architecture
- Gradle
- MiTweet
- Codeforces
- 코드포스
- 프로그래머스
- 쿠링
- relay
Archives
- Today
- Total
이동식 저장소
TalkBack이 Compose TextField를 인식하지 못하는 문제 본문
Compose Material 컴포넌트 중 ``TextField`` 종류가 TalkBack의 포커스를 받지 못하는 경우가 있다. 마치 해당 컴포넌트가 없는 것처럼 그냥 지나쳐 버린다.
원인
은 솔직히 잘 모르겠다. 그런데 ``TextField``에 label을 추가해 주면 정상 작동한다.
OutlinedTextField(
label = {
TitleSmall(text = stringResource(R.string.school_text_field_label))
},
// ...
)
접근성 차원에서라도 라벨을 꼬박꼬박 붙여주는 걸로..?
'Primary > Compose' 카테고리의 다른 글
Composable 매개변수 줄이기 - 오버로딩 활용 (3) | 2024.01.10 |
---|---|
Accompanist Compose Navigation 라이브러리 deprecated - migration 가이드 (0) | 2024.01.01 |
Compose에서 이미지가 흑백으로 보일 때 (0) | 2023.06.10 |
모든 터치 이벤트의 시작과 끝을 판별하는 방법 (0) | 2023.01.14 |
Preview 모드인지 확인하는 방법 (0) | 2023.01.06 |
Comments