跑马灯

    <TextView
        android:id="@+id/tv_run"
        android:text="TextView滚动的前提是这个空间必须要获得焦点。"
        android:textSize="20sp"
        android:padding="5dp"
        
        android:marqueeRepeatLimit="marquee_forever"
        android:focusable="true"
        android:ellipsize="marquee"
        android:focusableInTouchMode="true"
        android:singleLine="true"
                
        android:layout_below="@id/tv_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

 

posted @ 2016-08-31 09:29  一路向北中  阅读(112)  评论(0编辑  收藏  举报