본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] TextSwitcher ( from API level 1 )

by 돼지왕 왕돼지 2017. 7. 9.
반응형

 [android] TextSwitcher ( from API level 1 )


http://developer.android.com/reference/android/widget/TextSwitcher.html


animation, ImageSwitcher, in, inanimation, Label, out, outanimation, setcurrenttext, setFactory, settext, textswitcher, TextView, Update, viewgroup, ViewSwitcher, [android] TextSwitcher ( from API level 1 )


-

TextView 들만을 child 로 가지는 ViewGroup 이다.

Label 을 animation 하는 데 유용하다.

setText 가 불릴때마다 animation 을 해서 현재 text 를 out 시키고, 새로운 text 를 in 시킨다.




-

inAnimation 과 outAnimation 을 지정하여 사용한다.



-

setText 는 animation 을 하지만, setCurrentText 를 하면 현재 보여지고 있는 text 를 그냥 update 하기 때문에 animation 이 없다.



-
TextSwitcher 는 ViewSwitcher 를 상속받은 녀석이다.
setFactory 함수를 통해 Animation 될 때마다 View 를 만들어 낼 수도 있다.

ViewSwitcher 를 상속받은 ImageSwitcher 도 있다.




반응형

댓글