zoukankan      html  css  js  c++  java
  • TextView跑马灯效果

    转载:http://www.2cto.com/kf/201409/330658.html

    一、只想让TextView显示一行,但是文字超过TextView的长度怎么办?
    在开头显示省略号

    android:singleLine="true" 
    android:ellipsize="start"

    在结尾显示省略号

    android:singleLine="true" 
    android:ellipsize="end"

    在中间显示省略号

    android:singleLine="true" 
    android:ellipsize="middle"

    横向自动滚动(跑马灯效果)

    android:singleLine="true" 
    android:ellipsize="marquee" 
    android:marqueeRepeatLimit="marquee_forever" 
    android:focusable="true" 
    android:focusableInTouchMode="true"

    以上4个效果都要加上 android:singleLine="true",因为TextView默认是会自动换行的

    android:ellipsize是设置文字过长时,该怎么显示

    android:marqueeRepeatLimit="marquee_forever"是设置永远重复,当然你也可以设置具体的数字

    android:focusable="true"和android:focusableInTouchMode="true"一定要加上,不然滚动效果出不来

    二、怎么让TextView可以垂直滚动?
    Java代码中加入下面一句话就可以实现垂直滚动:textView.setMovementMethod(ScrollingMovementMethod.getInstance());

    三、怎么使TextView内容改变,跑马灯效果依然可以使用

    重写TextView设置TextView一直处于选中状态:AlwaysMarqueeTextView.java

    /*
     * 重写TextView保证跑马灯效果一直显示
     */
    public class AlwaysMarqueeTextView extends TextView {
    
        public AlwaysMarqueeTextView(Context context) {
            super(context);
        }
        
        public AlwaysMarqueeTextView(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
        
        public AlwaysMarqueeTextView(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
        }
        
        @Override
        public boolean isFocused() {
            return true;//一定要设置为true
        }
    }
  • 相关阅读:
    Python网络爬虫规则之实例
    Syncthing:同步window和linux文件
    阿里云AIoT云端一体:迎接云原生+低代码时代的到来
    低代码时代的物联网快速构建工具-YFIOs
    阿里云、华为云和腾讯云等多家物联网平台的异同
    全志 Fex文件
    le16_to_cpu
    无线充电技术简介
    AK47所向披靡,内存泄漏一网打尽
    zRAM内存压缩技术原理与应用
  • 原文地址:https://www.cnblogs.com/AndroidJotting/p/4815449.html
Copyright © 2011-2022 走看看