Android跑马灯MarqueeView源码解析

跑马灯效果,大家可以去原作者浏览https://github.com/sfsheng0322/MarqueeView
下面看自定义控件的代码

public class MarqueeView extends ViewFlipper {

  private Context mContext;
  private List<String> notices;
  private boolean isSetAnimDuration = false;
  private OnItemClickListener onItemClickListener;

  private int interval = 2000;
  private int animDuration = 500;
  private int textSize = 14;
  private int textColor = 0xffffffff;

  private int gravity = Gravity.LEFT | Gravity.CENTER_VERTICAL;
  private static final int TEXT_GRAVITY_LEFT = 0, TEXT_GRAVITY_CENTER = 1, TEXT_GRAVITY_RIGHT = 2;

  public MarqueeView(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(context, attrs, 0);
  }

  private void init(Context context, AttributeSet attrs, int defStyleAttr) {
    this.mContext = context;
    if (notices == null) {
      notices = new ArrayList<>();
    }

    TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.MarqueeViewStyle, defStyleAttr, 0);
    interval = typedArray.getInteger(R.styleable.MarqueeViewStyle_mvInterval, interval);
    isSetAnimDuration = typedArray.hasValue(R.styleable.MarqueeViewStyle_mvAnimDuration);
    animDuration = typedArray.getInteger(R.styleable.MarqueeViewStyle_mvAnimDuration, animDuration);
    if (typedArray.hasValue(R.styleable.MarqueeViewStyle_mvTextSize)) {
      textSize = (int) typedArray.getDimension(R.styleable.MarqueeViewStyle_mvTextSize, textSize);
      textSize = DisplayUtil.px2sp(mContext, textSize);
    }
    textColor = typedArray.getColor(R.styleable.MarqueeViewStyle_mvTextColor, textColor);
    int gravityType = typedArray.getInt(R.styleable.MarqueeViewStyle_mvGravity, TEXT_GRAVITY_LEFT);
    switch (gravityType) {
      case TEXT_GRAVITY_CENTER:
        gravity = Gravity.CENTER;
        break;
      case TEXT_GRAVITY_RIGHT:
        gravity = Gravity.RIGHT | Gravity.CENTER_VERTICAL;
        break;
    }
    typedArray.recycle();

    setFlipInterval(interval);

    Animation animIn = AnimationUtils.loadAnimation(mContext, R.anim.anim_marquee_in);
    if (isSetAnimDuration) animIn.setDuration(animDuration);
    setInAnimation(animIn);

    Animation animOut = AnimationUtils.loadAnimation(mContext, R.anim.anim_marquee_out);
    if (isSetAnimDuration) animOut.setDuration(animDuration);
    setOutAnimation(animOut);
  }

  // 根据公告字符串启动轮播
  public void startWithText(final String notice) {
    if (TextUtils.isEmpty(notice)) return;
    getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
      @Override
      public void onGlobalLayout() {
        getViewTreeObserver().removeGlobalOnLayoutListener(this);
        startWithFixedWidth(notice, getWidth());
      }
    });
  }

  // 根据公告字符串列表启动轮播
  public void startWithList(List<String> notices) {
    setNotices(notices);
    start();
  }

  // 根据宽度和公告字符串启动轮播
  private void startWithFixedWidth(String notice, int width) {
    int noticeLength = notice.length();
    int dpW = DisplayUtil.px2dip(mContext, width);
    int limit = dpW / textSize;
    if (dpW == 0) {
      throw new RuntimeException("Please set MarqueeView width !");
    }

    if (noticeLength <= limit) {
      notices.add(notice);
    } else {
      int size = noticeLength / limit + (noticeLength % limit != 0 ? 1 : 0);
      for (int i = 0; i < size; i++) {
        int startIndex = i * limit;
        int endIndex = ((i + 1) * limit >= noticeLength ? noticeLength : (i + 1) * limit);
        notices.add(notice.substring(startIndex, endIndex));
      }
    }
    start();
  }

  // 启动轮播
  public boolean start() {
    if (notices == null || notices.size() == 0) return false;
    removeAllViews();

    for (int i = 0; i < notices.size(); i++) {
      final TextView textView = createTextView(notices.get(i), i);
      final int finalI = i;
      textView.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
          if (onItemClickListener != null) {
            onItemClickListener.onItemClick(finalI, textView);
          }
        }
      });
      addView(textView);
    }

    if (notices.size() > 1) {
      startFlipping();
    }
    return true;
  }

  // 创建ViewFlipper下的TextView
  private TextView createTextView(String text, int position) {
    TextView tv = new TextView(mContext);
    tv.setGravity(gravity);
    tv.setText(text);
    tv.setTextColor(textColor);
    tv.setTextSize(textSize);
    tv.setTag(position);
    return tv;
  }

  public int getPosition() {
    return (int) getCurrentView().getTag();
  }

  public List<String> getNotices() {
    return notices;
  }

  public void setNotices(List<String> notices) {
    this.notices = notices;
  }

  public void setOnItemClickListener(OnItemClickListener onItemClickListener) {
    this.onItemClickListener = onItemClickListener;
  }

  public interface OnItemClickListener {
    void onItemClick(int position, TextView textView);
  }

}

跑马灯view是继承ViewFlipper,可以看到他的结构体

其实ViewFlipper工作机制很简单,如上图,就是将添加到ViewFlipper中的子View按照顺序定时的显示是其中一个子View,其他的子View设置为Gone状态

private Context mContext;
  private List<String> notices;
  private boolean isSetAnimDuration = false;
  private OnItemClickListener onItemClickListener;

  private int interval = 2000;
  private int animDuration = 500;
  private int textSize = 14;
  private int textColor = 0xffffffff;

  private int gravity = Gravity.LEFT | Gravity.CENTER_VERTICAL;
  private static final int TEXT_GRAVITY_LEFT = 0, TEXT_GRAVITY_CENTER = 1, TEXT_GRAVITY_RIGHT = 2;

看出view的一些属性,上下文,集合,是否动画延迟,点击事件,跑马灯的时间间隔,动画延迟时间,字体大小颜色,设置位置在靠左垂直中间对齐,文字的位置常量。

修改MarqueeView的构造方法,我们可以在右键generate快速生成。

<declare-styleable name="MarqueeViewStyle">
    <attr name="mvInterval" format="integer|reference"/>
    <attr name="mvAnimDuration" format="integer|reference"/>
    <attr name="mvTextSize" format="dimension|reference"/>
    <attr name="mvTextColor" format="color|reference"/>
    <attr name="mvGravity">
      <enum name="left" value="0"/>
      <enum name="center" value="1"/>
      <enum name="right" value="2"/>
    </attr>
  </declare-styleable>

TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.MarqueeViewStyle, defStyleAttr, 0);

首先获取属性集合,获取一个mv的间隔,默认值2000

isSetAnimDuration = typedArray.hasValue(R.styleable.MarqueeViewStyle_mvAnimDuration);

是否设置动画时间的延迟

if (typedArray.hasValue(R.styleable.MarqueeViewStyle_mvTextSize)) {
      textSize = (int) typedArray.getDimension(R.styleable.MarqueeViewStyle_mvTextSize, textSize);
      textSize = DisplayUtil.px2sp(mContext, textSize);
    }

假如设置有自定义文字大小,就获取然后px转成sp
获取控件位置,自由设置
在后面要回收

typedArray.recycle();

setFlipInterval(interval);设置滚屏间隔,单位毫秒

Animation animIn = AnimationUtils.loadAnimation(mContext, R.anim.anim_marquee_in);
    if (isSetAnimDuration) animIn.setDuration(animDuration);
    setInAnimation(animIn);

    Animation animOut = AnimationUtils.loadAnimation(mContext, R.anim.anim_marquee_out);
    if (isSetAnimDuration) animOut.setDuration(animDuration);
    setOutAnimation(animOut);

一进一出的动画效果

// 根据公告字符串启动轮播
public void startWithText(final String notice)
暴露个公共方法,里面有测量view的getViewTreeObserver方法,里面内部类调用了startWithFixedWidth(notice, getWidth());方法

 // 根据宽度和公告字符串启动轮播
  private void startWithFixedWidth(String notice, int width) {
    int noticeLength = notice.length();
    int dpW = DisplayUtil.px2dip(mContext, width);
    int limit = dpW / textSize;
    if (dpW == 0) {
      throw new RuntimeException("Please set MarqueeView width !");
    }

    if (noticeLength <= limit) {
      notices.add(notice);
    } else {
      int size = noticeLength / limit + (noticeLength % limit != 0 ? 1 : 0);
      for (int i = 0; i < size; i++) {
        int startIndex = i * limit;
        int endIndex = ((i + 1) * limit >= noticeLength ? noticeLength : (i + 1) * limit);
        notices.add(notice.substring(startIndex, endIndex));
      }
    }
    start();
  }

转换得到一个dp的宽度,限制字数长度大小。假如字符串小于直接add。假如过长取余得到行数。然后循环,获取那行的头尾,末尾假如2行字数还是比总体长度大就取总体长度,假如小于总体长度,就取那行的末尾下表。
然后开始播放

 // 启动轮播
  public boolean start() {
    if (notices == null || notices.size() == 0) return false;
    removeAllViews();

    for (int i = 0; i < notices.size(); i++) {
      final TextView textView = createTextView(notices.get(i), i);
      final int finalI = i;
      textView.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
          if (onItemClickListener != null) {
            onItemClickListener.onItemClick(finalI, textView);
          }
        }
      });
      addView(textView);
    }

    if (notices.size() > 1) {
      startFlipping();
    }
    return true;
  }

创建部署每行的tv

 // 创建ViewFlipper下的TextView
  private TextView createTextView(String text, int position) {
    TextView tv = new TextView(mContext);
    tv.setGravity(gravity);
    tv.setText(text);
    tv.setTextColor(textColor);
    tv.setTextSize(textSize);
    tv.setTag(position);
    return tv;
  }

然后将所有的textview add起来,然后开始播放。后面就是做个点击回调,然后set get这个公告的集合。
最后不要忘了在布局顶层加入

xmlns:app="http://schemas.android.com/apk/res-auto"

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android 中TextView中跑马灯效果的实现方法

     条件: 1.android:ellipsize="marquee" 2.TextView必须单行显示,即内容必须超出TextView大小 3.TextView要获得焦点才能滚动 mTVText.setText("超过文本长度的数据"); mTVText.setSingleLine(true);设置单行显示 mTVText.setEllipsize(TruncateAt.MARQUEE);设置跑马灯显示效果 TextView.setHorizontallyScrol

  • Android自定义View实现竖直跑马灯效果案例解析

    首先给出跑马灯效果图 中间的色块是因为视频转成GIF造成的失真,自动忽略哈. 大家知道,横向的跑马灯android自带的TextView就可以实现,详情请百度[Android跑马灯效果].但是竖直的跑马灯效果原生Android是不支持的.网上也有很多网友实现了自定义的效果,但是我一贯是不喜欢看别人的代码,所以这篇博客的思路完全是我自己的想法哈. 首先,我们需要给自定义的控件梳理一下格局,如下图所示: 1.首先我们将控件分为三个区块,上面绿色部分为消失不可见的块,中间黑色部分为可见区域,下面红色部

  • Android基于TextView实现的跑马灯效果实例

    本文实例讲述了Android基于TextView实现的跑马灯效果.分享给大家供大家参考,具体如下: package sweet.venst.act; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStrea

  • Android TextView跑马灯效果实现方法

    本文实例讲述了Android TextView跑马灯效果实现方法.分享给大家供大家参考,具体如下: public class MyTextView extends TextView{ public MyTextView(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public MyTextView(Context context, A

  • Android基于TextView实现跑马灯效果

    本文实例为大家分享了Android TextView实现跑马灯效果的具体代码,供大家参考,具体内容如下 当Layout中只有一个TextView需要实现跑马灯效果时,操作如下. 在Layout的TextView配置文件中增加         android:ellipsize="marquee"         android:focusable="true"         android:focusableInTouchMode="true"

  • Android TextView实现跑马灯效果的方法

    本文为大家分享一个非常简单但又很常用的控件,跑马灯状态的TextView.当要显示的文本长度太长,又不想换行时用它来显示文本,一来可以完全的显示出文本,二来效果也挺酷,实现起来超级简单,所以,何乐不为.先看下效果图: 代码实现 TextView自带了跑马灯功能,只要把它的ellipsize属性设置为marquee就可以了.但有个前提,就是TextView要处于被选中状态才能有效果,看到这,我们就很自然的自定义一个控件,写出以下代码: public class MarqueeTextView ex

  • Android实现跑马灯效果的方法

    本文实例讲述了Android实现跑马灯效果的方法.分享给大家供大家参考.具体如下: 运行效果截图如下: 直接在布局里写代码就好了: <TextView android:id="@+id/menu_desc" android:layout_width="300dip" android:layout_height="wrap_content" android:text="温馨提示:左右滑动更改菜单,点击进入" android

  • Android 实现不依赖焦点和选中的TextView跑马灯

    前言 之前有写一篇TextView跑马灯的效果,后来实际项目中有发现新的问题,比如还是无法自动跑,文本超过了显示区域就截取的问题,今天换了一种思路来实现,更简单更好用. 正文 代码实现: public class MarqueeTextView extends TextView { /** 是否停止滚动 */ private boolean mStopMarquee; private String mText; private float mCoordinateX; private float

  • Android基于TextView属性android:ellipsize实现跑马灯效果的方法

    本文实例讲述了Android基于TextView属性android:ellipsize实现跑马灯效果的方法.分享给大家供大家参考,具体如下: Android系统中TextView实现跑马灯效果,必须具备以下几个条件: 1.android:ellipsize="marquee" 2.TextView必须单行显示,即内容必须超出TextView大小 3.TextView要获得焦点才能滚动 XML代码: android:ellipsize="marquee", andro

  • Android自定义View实现纵向跑马灯效果详解

    首先看看效果图(录制的gif有点卡,真实的效果还是很流畅的) 实现思路 通过上面的gif图可以得出结论,其实它就是同时绘制两条文本信息,然后通过动画不断的改变两条文本信息距离顶部的高度,以此来实现滚动的效果. 具体实现 首先定义一些要用到的属性 <declare-styleable name="MarqueeViewStyle"> <attr name="textSize" format="dimension" /> &l

随机推荐