안녕하세요.


텍스트뷰의 옵션중에 마큐리를 이용하여 글자를 정광판 처럼 흘러 보내기를 할수있다고 해서


설정을 하였는데 흘러 가지않더라고요 ㅠㅠ


이유가 궁금합니다 xml과 java소스 올려드립니다.



main.xml


<TextView

                        android:id="@+id/notice"

                        android:layout_width="match_parent"

                        android:layout_height="wrap_content"

                        android:layout_marginTop="5dp"

                        android:ellipsize="marquee"

                        android:focusable="true"

                        android:marqueeRepeatLimit="marquee_forever" 

                        android:textColor="#FFFFFF" />



main.java

txt_notice = (TextView)findViewById(R.id.notice);

txt_notice.setText("안녕하세요");

txt_notice.setSelected(true);



이상입니다.  어디가 잘못되었는지 못찾겠습니다  os는 아이스크림샌드위치  노트 1 입니다.


관련부분 소스만 올린것입니다.  감사합니다.