티스토리 뷰
안드로이드에서 흐르는 텍스트를 만드는 방법은 무척 간단하다.
Layout 리소스 XML 의 TextView (또는 TextView 가 들어간 위젯) 속성에 다음과 같이 세 줄만 추가해 주면 된다.
<TextView
android:ellipsize="marquee"
android:singleLine="true"
android:marqueeRepeatLimit="marquee_forever"
<!-- 중략 -->
하지만 위와 같은 방법으로 사용할 경우 포커스가 위치해 있을 경우만 흐르게 된다.
항상 흐르는 텍스트 뷰를 만들기 위해서 다음과 같이 TextView를 상속받는 커스텀 클래스를 만들어야 한다.
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.TextView;
public class MarqueeTextView extends TextView{
public MarqueeTextView(Context context) {
super(context);
}
public MarqueeTextView(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
@Override
protected void onFocusChanged(boolean focused, int direction, Rect
previouslyFocusedRect) {
if(focused)
super.onFocusChanged(focused, direction, previouslyFocusedRect);
}
@Override
public void onWindowFocusChanged(boolean focused) {
if(focused)
super.onWindowFocusChanged(focused);
}
@Override
public boolean isFocused() {
returntrue;
}
}
그리고 다시 Layout 의 XML 로 돌아와서 흐르는 기능이 적용된 TextView를 위의 커스텀 TextView 클래스로 교체하면 끝!
<com.test.MarqueeTextView
android:id="@+id/textViewTitleOnDrawBar"
android:layout_width="fill_parent"
android:layout_height="fill_parent""
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:text="흐르는 텍스트~~~~~~~~~"/>
버튼과 텍스트 뷰에 항상 흐르는 텍스트를 적용한 예제 프로젝트 (이클립스 기반으로 작성하였습니다.)
'개발 관련 > Android ' 카테고리의 다른 글
맥에서 Genymotion 을 이용하여 보다 빠른 안드로이드 에뮬레이터로 개발하기. (0) | 2013.11.02 |
---|---|
[tip] 안드로이드 단위 변환 dp <-> px (0) | 2013.08.29 |
[Tip] TextView 에 취소선 긋기. (0) | 2013.07.19 |
[Tip] 안드로이드 CPU 코어 갯수 가져오기. (1) | 2013.06.14 |
[Tip] 안드로이드 코드상에서 스크린 사이즈 구분하기. (폰 타블릿 구분) (0) | 2013.06.14 |
- Total
- Today
- Yesterday
- Java
- ESP8266
- 블루투스
- bluetooth
- Android
- 안드로이드 개발
- 아두이노
- 스마트 무드등
- 안드로이드
- 병렬 프로그래밍
- 침블락
- WS2812B
- 가습기
- json
- 알리익스프레스
- ndk
- ENC28J60
- ATtiny85
- activity
- 칩두이노
- noidemcu
- Cheapduino
- HC-06
- 부트로더
- 이더넷
- oled
- arduino
- NeoPixel
- Iot
- 개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |