💌 [Android/Kotlin] TextView 가로로 자동 스크롤 하기

텍스트뷰 라인을 1줄로 제한하고 길이가 길때는 자동으로 가로로 스크롤 되게 하려면 아래와 같이 적용하면 된다

<TextView
	android:id="@+id/textView"
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	android:maxLines="1"
	android:text="가나다라마바사아자차카타파하 abcdefghijklmnopqrstuvwxyz 0123456789"
/>
textView.apply { // 텍스트가 길때 자동 스크롤
	setSingleLine()
	marqueeRepeatLimit = -1
	ellipsize = TextUtils.TruncateAt.MARQUEE
	isSelected = true
}

profile
Android Developer..+ iOS 슬쩍 🌱 ✏️끄적끄적,,개인 기록용 👩🏻‍💻

0개의 댓글