Android自定义控件--1(TextView跑马灯效果)

N久没有跟新了,最近做的银行项目中的一个自定义控件(用于状态栏欢迎语句+柜员信息的滚动,简单点说就是TextView跑马灯效果)
package com.hacheng.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.VelocityTracker;
import android.view.ViewConfiguration;
import android.view.animation.DecelerateInterpolator;
import android.widget.Scroller;
import android.widget.TextView;

public class ScrollTextView extends TextView {
private Scroller mScroller;
private int mTouchSlop;
private int mMinimumVelocity;
private int mMaximumVelocity;

private float mLastMotionY;
private boolean mIsBeingDragged;
private VelocityTracker mVelocityTracker;
private int mActivePointerId = INVALID_POINTER;

private static final int INVALID_POINTER = -1;

public ScrollTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
initView();
}

public ScrollTextView(Context context, AttributeSet attrs) {
super(context, attrs);
initView();
}

public ScrollTextView(Context context) {
super(context);
initView();
}

private void initView() {
final Context cx = getContext();
// 设置滚动减速器,在fling中会用到
mScroller = new Scroller(cx, new DecelerateInterpolator(0.5f));
final ViewConfiguration configuration = ViewConfiguration.get(cx);
mTouchSlop = configuration.getScaledTouchSlop();
mMinimumVelocity = configuration.getScaledMinimumFlingVelocity();
mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();

}

/**
* 此方法为最后机会来修改mScrollX,mScrollY. 这方法后将根据mScrollX,mScrollY来偏移Canvas已实现内容滚动
*/
@Override
public void computeScroll() {
super.computeScroll();

final Scroller scroller = mScroller;
if (scroller.computeScrollOffset()) { // 正在滚动,让view滚动到当前位置
int scrollY = scroller.getCurrY();
final int maxY = (getLineCount() * getLineHeight()
+ getPaddingTop() + getPaddingBottom())
- getHeight();
boolean toEdge = scrollY < 0 || scrollY > maxY;
if (scrollY < 0)
scrollY = 0;
else if (scrollY > maxY)
scrollY = maxY;

/*
* 下面等同于: mScrollY = scrollY; awakenScrollBars(); //显示滚动条,必须在xml中配置。
* postInvalidate();
*/
scrollTo(0, scrollY);
if (toEdge) // 移到两端,由于位置没有发生变化,导致滚动条不显示
awakenScrollBars();
}
}

public void fling(int velocityY) {
final int maxY = (getLineCount() * getLineHeight() + getPaddingTop() + getPaddingBottom())
- getHeight();

mScroller.fling(getScrollX(), getScrollY(), 0, velocityY, 0, 0, 0,
Math.max(0, maxY));

// 刷新,让父控件调用computeScroll()
invalidate();
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
/*
* 事件处理方式:先自己处理后交给父类处理。 PS:方式不同,可能导致效果不同。请根据需求自行修改。
*/
boolean handled = false;
final int contentHeight = getLineCount() * getLineHeight();
if (contentHeight > getHeight()) {
handled = processScroll(ev);
}

return handled | super.onTouchEvent(ev);
}

private boolean processScroll(MotionEvent ev) {
boolean handled = false;
if (mVelocityTracker == null) {
mVelocityTracker = VelocityTracker.obtain();
}
mVelocityTracker.addMovement(ev); // 帮助类,用来在fling时计算移动初速度

final int action = ev.getAction();

switch (action) {
case MotionEvent.ACTION_DOWN: {
if (!mScroller.isFinished()) {
mScroller.forceFinished(true);
}

mLastMotionY = ev.getY();
mActivePointerId = ev.getPointerId(0);
mIsBeingDragged = true;
handled = true;
break;
}
case MotionEvent.ACTION_MOVE: {
final int pointerId = mActivePointerId;
if (mIsBeingDragged && INVALID_POINTER != pointerId) {
final int pointerIndex = ev.findPointerIndex(pointerId);
final float y = ev.getY(pointerIndex);
int deltaY = (int) (mLastMotionY - y);

if (Math.abs(deltaY) > mTouchSlop) { // 移动距离(正负代表方向)必须大于ViewConfiguration设置的默认值
mLastMotionY = y;

/*
* 默认滚动时间为250ms,建议立即滚动,否则滚动效果不明显 或者直接使用scrollBy(0, deltaY);
*/
mScroller.startScroll(getScrollX(), getScrollY(), 0,
deltaY, 0);
invalidate();
handled = true;
}
}
break;
}
case MotionEvent.ACTION_UP: {
final int pointerId = mActivePointerId;
if (mIsBeingDragged && INVALID_POINTER != pointerId) {
final VelocityTracker velocityTracker = mVelocityTracker;
velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
int initialVelocity = (int) velocityTracker
.getYVelocity(pointerId);

if (Math.abs(initialVelocity) > mMinimumVelocity) {
fling(-initialVelocity);
}

mActivePointerId = INVALID_POINTER;
mIsBeingDragged = false;

if (mVelocityTracker != null) {
mVelocityTracker.recycle();
mVelocityTracker = null;
}

handled = true;
}
break;
}
}
return handled;
}
}


layout中引用:
 <com.hacheng.view.ScrollTextView
android:id="@+id/scrollview"
android:layout_width="750px"
android:layout_height="48px"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="欢迎光临中国某某银行!柜员号:25645 地区号:658978"
android:textSize="38dp" >
</com.hacheng.view.ScrollTextView>


源码下载请戳这里:
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值