TextView跑马灯效果,也就是,自动滚动文字的效果。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"


    >
<TextView  android:id="@+id/tv"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:singleLine="true" 
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true" //这句不能少
    android:marqueeRepeatLimit="marquee_forever"
    android:textColor="#FFFFFF"
    android:text="longlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong"
    />

</LinearLayout>

直接复制进布局文件就OK了。

发布了25 篇原创文章 · 获赞 1 · 访问量 4万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章