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
- button
- 랜덤ID
- firebasefunctions
- 코틀린
- 안드로이드 스튜디오
- nav_graph
- EditText
- 팝업액티비티
- androidstudio
- Activity
- textview
- BottomSheetDialog
- 뷰바인딩
- lifecyclescope
- ROOM
- RealtimeDB
- ArrayList
- ButtonWithButton
- Imageview
- ViewModel
- 밑줄
- OutlinedButton
- Kotlin
- FRAGMENT
- Android
- firebase
- MaterialButton
- 안드로이드스튜디오
- Dialog
- 안드로이드
Archives
- Today
- Total
안드로이드 앱 개발
안드로이드 TextView에서 글자수 초과시 ... 표현 방법 본문
<TextView
android:id="@+id/memo_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="@+id/memo_title"
app:layout_constraintTop_toBottomOf="@+id/memo_date"
android:layout_marginLeft="3dp"
android:layout_marginTop="8dp"
android:fontFamily="@font/notosanscjkkrbold"
android:includeFontPadding="false"
tools:text="메모내용"
android:textColor="@color/mainGrey"
android:maxLines="4"
android:ellipsize="end"
android:inputType="text"/>
maxLine을 정의하고
ellipsize ="end"를 하면 된다
*ellipsize
- none 맨 뒤에 아무 표시 없이 자르기
- start는 맨 앞에 ... 으로 보여주기
- marquee는 왼쪽으로 글자가 흘러가면 보여줌
★ maxLines가 적용이 안되면
inputType이 정의가 되어있는지 확인 필수
반드시 inputType 정의해야함