본문 바로가기

Android

TextView 슬라이딩

텍스트뷰 크기는 제한되어있고 표현해야할 텍스트가 많을때 사용하면 좋은것 같다. 
 
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); 

 이런식으로 주면 좌우로 흘러가는 텍스트를 볼 수 있다.


'Android' 카테고리의 다른 글

android.app.serviceconnectionleaked  (0) 2012.05.22
android 4.0에서 http통신을 할떄 주의할점.  (0) 2012.03.21
앱 종료하기.  (0) 2012.03.12
eclipse상에서 코드 비교하기.  (0) 2012.03.12
setText() 에러 처리하기.  (0) 2011.12.15