码迷,mamicode.com
首页 > 移动开发 > 详细

android marquee textview 走马灯效果

时间:2014-07-11 19:12:34      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   使用   

网上查的全都不能用。还是自己试验出来的。。。

 

测试机版本:4.0.3

 

网上有文章说要加 addStatesFromChildren

实测:加不加都能正常滚动

 

android:focusable="true"

实测:必须在xml里添加。在程序中使用tv.setFocusable(true);不能滚动

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:addStatesFromChildren="true"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:text="11adshfkalhafklajfhkadjfhakjfhdjkfhadfjkhasdfhasdfjkhashkadjfhakjfhdjkfhadfjkhasdfhasdfjkhashkadjfhakjfhdjkfhadfjkhasdfhasdfjkhashkadjfhakjfhdjkfhadfjkhasdfhasdfjkhashkadjfhakjfhdjkfhadfjkhasdfhasdfjkhasdjkfhsdakfhasdjkfhasdkfhsajkdfhsdfhsadfkjhsaf" />

    <Button
        android:id="@+id/xinle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="sad" />

</LinearLayout>

 

 点击button可以切换模式

findViewById(R.id.xinle).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                flag = !flag;
                if (flag) {
                    textView.setEllipsize(TextUtils.TruncateAt.valueOf("END"));
                    return;
                }
                textView.setEllipsize(TextUtils.TruncateAt.valueOf("MARQUEE"));
            }
        });

 

关于ellipsize这个参数的用法

在xml中

android:ellipsize = "end"    省略号在结尾

android:ellipsize = "start"   省略号在开头

android:ellipsize = "middle"     省略号在中间

android:ellipsize = "marquee"  跑马灯

最好加一个约束android:singleline = "true"

 

当然也可以用代码语句

tv.setEllipsize(TextUtils.TruncateAt.valueOf("END"));

tv.setEllipsize(TextUtils.TruncateAt.valueOf("START"));

tv.setEllipsize(TextUtils.TruncateAt.valueOf("MIDDLE"));

tv.setEllipsize(TextUtils.TruncateAt.valueOf("MARQUEE"));

最好再加一个约束tv.setSingleLine(true);

 

android marquee textview 走马灯效果,布布扣,bubuko.com

android marquee textview 走马灯效果

标签:android   style   blog   http   color   使用   

原文地址:http://www.cnblogs.com/622698abc/p/3833550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!