안드로이드 ppt
-
[Android] 안드로이드 TextSwitcher 알아보기안드로이드 스튜디오/텍스트뷰(TextView) 2022. 9. 12. 11:12
1. TextSwitcher 개요 TextSwitcher는 TextView에 애니메이션을 입혀 사용자들로 하여금 마치 PPT를 보는 듯한 시각적 효과를 구현하는 도구입니다. 2. TextSwitcher 구현하기(XML) 간단하게 TextSwitcher, Button을 넣어줬습니다. TextSwitcher 속성 중 inAnimation과 outAnimation을 활용해 시작 애니메이션, 종료 애니메이션을 구현합니다. alpha_start alpha_end 3. TextSwitcher 구현하기(JAVA) public class MainActivity extends Activity { TextSwitcher tsw; String[] str = {"딸기", "사과", "배", "키위", "바나나"}; int n..