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
- BottomSheetDialog
- 코틀린
- firebasefunctions
- button
- EditText
- FRAGMENT
- Activity
- OutlinedButton
- 밑줄
- ButtonWithButton
- Kotlin
- firebase
- 뷰바인딩
- Dialog
- ViewModel
- androidstudio
- 랜덤ID
- Imageview
- MaterialButton
- 안드로이드
- 팝업액티비티
- nav_graph
- lifecyclescope
- ArrayList
- ROOM
- RealtimeDB
- Android
- 안드로이드 스튜디오
- textview
- 안드로이드스튜디오
Archives
- Today
- Total
안드로이드 앱 개발
폰트적용시 여백, margin값 없애주기 본문
ㅅ개발을 하다보면
디자이너가 적용한 폰트를 적용했을 때, 에디터에서는 정상적으로 보이지만
막상 에뮬레이터나 device에서는 textview간에 margin이 있는 것처럼 보인다.
예시
이를 해결하고 싶을
떄 아래와 같은 처리를 해주면 된다 .
// XML
android:includeFontPadding="false"
// JAVA
textView.setIncludeFontPadding(false)
결과
'안드로이드앱 > TextView' 카테고리의 다른 글
TextView 글자색 바꾸기 - getColor가 deprecated (0) | 2021.10.24 |
---|---|
TextView에 밑줄, 취소선 등 setPaingFlags... (0) | 2021.03.20 |