为了账号安全,请及时绑定邮箱和手机立即绑定

深入理解TextView,如何写一个循环文字滚动的TextView(三)

标签:
Android

我们来看一下效果:

https://img1.sycdn.imooc.com//5c08d5a70001bd4406421110.jpg

文字会慢慢从右边向左边滚动,为了实现这个效果,可以用timer来实现

每次timer回调的时候改变文字左边的位置

ondraw()绘制text的代码:

int len = stateList.size();
float curLen = x;
for (int i = 0; i < len; i++) {
    LinkInfo info = stateList.get(i);
    if (info.isFace()) {
        Bitmap faceBmp = StateFaceModel.getInstance()
                .getSmallFaceIcon(info.getContent());
        int xLen = faceBmp.getWidth();
        txtCanvas.drawBitmap(faceBmp, curLen + 2, 0, txtPaint);
        curLen += xLen + 4;
        continue;
    }
    String strContent = info.getContent();
    strContent = strContent.replaceAll("\n", " ");
    float xLen = txtPaint.measureText(strContent);
    txtCanvas.drawText(strContent, curLen, y, txtPaint);
    curLen += xLen;
}
canvas.drawBitmap(txtBmp, left, 0, paint);

我们看到关键就是curLen这个变量,每次起始点的坐标都是curLen

每次timer回调的时候我们改变一个step的变量:

public void scrollText() {
    if (!isStarting) {
        return;
    }
    invalidate();
    if (viewWidth < textLength) {
        step += 0.5;
        if (step > temp_view_plus_two_text_length) {
            step = textLength;
        }
    }
}

onDraw的完成代码:

@Override
public void onDraw(Canvas canvas) {
    try {
        //初始化一个txtCanvas,里面放txtBmp的bitmap
        setTxtBmp();
        if (txtBmp == null) {
            return;
        }
        Paint txtPaint = new Paint();
        txtPaint.setColor(Color.WHITE);
        txtPaint.setStyle(Style.FILL);
        txtCanvas.drawRect(0, 0, txtBmp.getWidth(), txtBmp.getHeight(),
                txtPaint);
        txtPaint.setAntiAlias(true);
        txtPaint.setStyle(Style.STROKE);
        txtPaint.setTextSize(getTextSize());
        txtPaint.setColor(getCurrentTextColor());
        float x = 0;
        if (viewWidth < textLength) {
            x = temp_view_plus_text_length - step;
        }
        int len = stateList.size();
        float curLen = x;
        for (int i = 0; i < len; i++) {
            LinkInfo info = stateList.get(i);
            if (info.isFace()) {
                Bitmap faceBmp = StateFaceModel.getInstance()
                        .getSmallFaceIcon(info.getContent());
                int xLen = faceBmp.getWidth();
                txtCanvas.drawBitmap(faceBmp, curLen + 2, 0, txtPaint);
                curLen += xLen + 4;
                continue;
            }
            String strContent = info.getContent();
            strContent = strContent.replaceAll("\n", " ");
            float xLen = txtPaint.measureText(strContent);
            txtCanvas.drawText(strContent, curLen, y, txtPaint);
            curLen += xLen;
        }
        canvas.drawBitmap(txtBmp, left, 0, paint);
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

Activity中这样来调用:

public class NewsActivity extends Activity implements OnClickLinkListener{

   private ScrollText tvState;
   private ImageView ivState;
   private NewsModel newsModel = NewsModel.getInstance();
      
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      requestWindowFeature(Window.FEATURE_NO_TITLE);
      setContentView(R.layout.news_activity);
      StateFaceModel.getInstance().init(this);
      tvState = (ScrollText)findViewById(R.id.news_statustxt);
      initStatus();
   }
   
    private void initStatus(){
       ivState = (ImageView) findViewById(R.id.news_statusinput);
       String s = "厦门这边的沙茶面很好吃,尤其是民族路上的一家很有名的店(#f2)";
       newsModel.setStatus(s);
       String strModel = newsModel.getStatus();
        setStateText(strModel);
   }
    
   private void setStateText(String strModel){
      if(!TextUtils.isEmpty(strModel)){
         tvState.setStateList(newsModel.getStateList());
         tvState.setText(strModel);
            tvState.init(getWindowManager(), handler);
            tvState.startScroll();
            tvState.start();
        }
   }
   
    private Handler handler = new Handler() {
         @Override
         public void handleMessage(Message msg) {
            switch (msg.what) {
            case ScrollText.TEXT_TIMER:
               if(tvState != null){
                  tvState.scrollText();
               }
               break;
            default:
               break;
            }
         }
      };

完整代码我都上传到https://github.com/nickgao1986/StepSport

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消