公告动画

notice.gif

废话区:每次写动画,都是奇葩的需求。这次是一个公告的动画,按理说就是一条条的往上走呗,但是,我们的公告“长”着呢,屏幕展示不完,咋办,要先往左滚动,展示完了这一条信息之后再往上滚动。
需求:一条信息,如果超出屏幕,就要是跑马灯的效果,这个直接上原生的,没有超出不滚动。对于多条信息,如果超出屏幕,就要先往左移动,直到展示完毕,在往上面移动。
这边加上一个代码里面获取焦点的代码,这个页面已经非常复杂了,然后你无法获取到焦点,那这个跑马灯的效果是实现不了的,我这边就是在代码里面手动加上获取焦点的代码:

tv.setText(mNoticeBeanList.get(0).getTitle());
tv.setFocusable(true);
tv.setFocusableInTouchMode(true);
tv.requestFocus();
package com.example.retrofit.studyretrofit;

import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.content.Context;
import android.graphics.Paint;
import android.os.Handler;
import android.os.Message;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.view.Display;
import android.view.View;
import android.view.WindowManager;
import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.ViewFlipper;

/**
 * Created by on 2017/3/16.
 */

public class MyNoticeLayout extends LinearLayout {

    private ViewFlipper viewSwitcher;
    private int indexSel = 0;
    private Display mDisplay;
    private WindowManager mWindowManager;
    private String[] tags;
    private int mMW;
    private TextView mTv;
    private Context mContext;
    private TextView mStudy_tv;

    public MyNoticeLayout(@NonNull Context context) {
        this(context,null);
    }

    public MyNoticeLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        this.mContext = context;
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        initView(mContext);
    }

    private void initView(Context context) {
        mTv = (TextView) findViewById(R.id.tv);
        mWindowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
        mDisplay = mWindowManager.getDefaultDisplay();
        viewSwitcher = (ViewFlipper) findViewById(R.id.viewswitcher);

        tags = new String[3];
        tags[0] = "公告信息:xxx门店开业,满5000元减500元,热烈欢迎welcome to hahahha";
        tags[1] = "公告信息:xxx门店开业,满5000元减500元";
        tags[2] = "公告信息:xxx门店开业,满5000元减500元,热烈欢迎1111222333";
        mTv.setVisibility(tags.length > 1 ? View.GONE: View.VISIBLE);
        viewSwitcher.setVisibility(tags.length > 1 ? View.VISIBLE : View.GONE);

        if(tags.length > 1){
            for(int i= 0; i<tags.length; i++){
                View view = View.inflate(mContext, R.layout.item_viewswitch,null);
                viewSwitcher.addView(view);
            }

            limitTiem();
        }else{
            mTv.setText(tags[0]);
        }
    }


    private void limitTiem() {
        //设置切入动画
        TranslateAnimation mAnimationTop = new TranslateAnimation(0,0,200,0);
        mAnimationTop.setDuration(2000);
        mAnimationTop.setAnimationListener(new Animation.AnimationListener() {
            @Override
            public void onAnimationStart(Animation animation) {
                width();
                ObjectAnimator objectAnimatorTranslate = ObjectAnimator.ofFloat(mStudy_tv, "translationX", -mMW, 0);
                objectAnimatorTranslate.setDuration(1);
                objectAnimatorTranslate.start();

                Message message = Message.obtain();
                message.what = 1;
                mHandler.sendMessageDelayed(message, 3000);
            }

            @Override
            public void onAnimationEnd(Animation animation) {
            }

            @Override
            public void onAnimationRepeat(Animation animation) {
            }
        });


        //设置切出动画
        TranslateAnimation mAnimationBottom = new TranslateAnimation(0,0,0,-200);
        mAnimationBottom.setDuration(2000);

        viewSwitcher.setInAnimation(mAnimationTop);
        viewSwitcher.setOutAnimation(mAnimationBottom);

        width();

        if(mMW<0){
            animation();
        }else{
            Message message = Message.obtain();
            message.what = 2;
            mHandler.sendMessageDelayed(message, 2000);
        }
    }

    public void width(){
        mStudy_tv = (TextView)viewSwitcher.getCurrentView().findViewById(R.id.viewswitcher_tv_one);
        String tag=tags[indexSel%tags.length];
        mStudy_tv.setText(tag);

        TextPaint paint = mStudy_tv.getPaint();
        int width = computeMaxStringWidth(tag, paint);
        mMW = mDisplay.getWidth()- width - UICommonUtil.dip2px(mContext, 20);
        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(UICommonUtil.dip2px(mContext,width+200),
                UICommonUtil.dip2px(mContext, 40));
        mStudy_tv.setLayoutParams(layoutParams);
    }


    Handler mHandler = new Handler(){
        @Override
        public void handleMessage(Message msg) {
            if(1 == msg.what){
                if(mMW<0){
                    animation();
                }else{
                    viewSwitcher.showNext();
                    indexSel = indexSel+1;
                }
            }else if(2 == msg.what){
                viewSwitcher.showNext();
                indexSel = indexSel+1;
            }

        }
    };


    /**
     * 当公告信息超出屏幕的时候,需要先往左移动
     */
    public void animation(){

        TextView mStudy_tv = (TextView)viewSwitcher.getCurrentView().findViewById(R.id.viewswitcher_tv_one);
        //超出屏幕向左移动
        ObjectAnimator objectAnimatorTranslate = ObjectAnimator.ofFloat(mStudy_tv, "translationX", 0, mMW);
        objectAnimatorTranslate.setDuration(2000);
        objectAnimatorTranslate.start();

        objectAnimatorTranslate.addListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                super.onAnimationEnd(animation);
                viewSwitcher.showNext();
                indexSel = indexSel+1;

            }
        });
    }


    /**
     * 计算textview的宽度
     * @param strings
     * @param p  这个paint 必须是 textview.getPaint(), 不能自己new出来,才能保证准确性
     * @return
     */
    private int computeMaxStringWidth(String strings, Paint p) {
        float maxWidthF = 0.0f;
        float width = p.measureText(strings);
        maxWidthF = Math.max(width, maxWidthF);
        int maxWidth = (int) (maxWidthF + 0.5);
        return maxWidth;
    }
}

<?xml version="1.0" encoding="utf-8"?>
<com.example.retrofit.studyretrofit.MyNoticeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    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:singleLine="true"

    />

    <ViewFlipper
        android:id="@+id/viewswitcher"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"/>

</com.example.retrofit.studyretrofit.MyNoticeLayout>

布局:item_viewswitch

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/viewswitcher_ll"
              android:layout_width="wrap_content"
              android:layout_height="40dp">
    <TextView
        android:id="@+id/viewswitcher_tv_one"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:textSize="14sp"
        android:gravity="center_vertical"

    />
</LinearLayout>

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"

>

    <include
        android:id="@+id/notice_layout"
        layout="@layout/notice_layout"/>

</LinearLayout>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,409评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,351评论 0 17
  • 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...
    皇小弟阅读 46,703评论 22 664
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 放假在家,我家老太太总会习惯性地问我,中午吃什么?晚上吃什么?大部分时候我的回答是,随便。昨天我这么说的时候,老太...
    A陈胖子阅读 669评论 0 2