Android
TextView 슬라이딩
선원태
2012. 3. 13. 16:09
텍스트뷰 크기는 제한되어있고 표현해야할 텍스트가 많을때 사용하면 좋은것 같다.
xml에서 텍스트뷰에 다음 속성을 추가한다.
android:focusable="true"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusableInTouchMode="true"
그리고 java소스상에서
TextView test = (TextView) findViewById(R.id.test);
test.setSelect(true);
이런식으로 주면 좌우로 흘러가는 텍스트를 볼 수 있다.