IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android RecyclerView TV-滑动选中态背景 -> 正文阅读

[移动开发]Android RecyclerView TV-滑动选中态背景

TV应用开发中,正常使用的是根据点击、焦点、selected换图片背景资源。但是效果看起来不怎么丝滑。

优化方案:
1、滑动过程中判断居中
2、选中态为滑动的。体验起来丝滑一些。
代码实现:

  private static final int ITEM_MOVE_TIME = 600;
    private static final int ANIM_VALUE = 60;

    private Paint mPaint;

    //四个目标坐标
    private int aimLeft;
    private int aimTop;
    private int aimBottom;
    private int aimRight;

    //目前的坐标
    private static int currLeft;
    private static int currTop;
    private int currBottom;
    private int currRight;

	//宽高
    private int width = 270;
    private int height  = 96;

    private RectF mRect;

    private ValueAnimator valueAnimator;

    public FocusBuoyView(Context context) {
        super(context);
    }

    public FocusBuoyView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public FocusBuoyView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    public FocusBuoyView(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        init();
        mRect.set(currLeft, currTop, currLeft + width, currTop + height);
        //画圆角矩形
        canvas.drawRoundRect(mRect, 14 , 14, mPaint);
    }

    private void init(){
        if (mPaint == null){
            mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
            mPaint.setColor(Color.parseColor("#DC6666"));
            mPaint.setStyle(Paint.Style.FILL);
        }
        if (mRect == null){
            mRect = new RectF();
        }
    }

    public void setBuoy(int left, int top , int right, int bottom){
        this.aimLeft = left;
        this.aimTop = top;
        this.aimRight = right;
        this.aimBottom = bottom;

        if (valueAnimator == null){
            valueAnimator = new ValueAnimator();
            valueAnimator.setIntValues(0, ANIM_VALUE);
        }
        valueAnimator.removeAllUpdateListeners();
        valueAnimator.cancel();
        valueAnimator.setDuration(ITEM_MOVE_TIME);
        valueAnimator.setTarget(null);
        valueAnimator.setInterpolator(new LinearInterpolator());
        valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                int index = (int) animation.getAnimatedValue();
                currLeft = currLeft + (int)((aimLeft - currLeft) * (double)((double)index / (double)ANIM_VALUE));
                currTop = currTop + (int)((aimTop - currTop) * (double)((double) index / (double)ANIM_VALUE ));
                invalidate();
            }
        });
        valueAnimator.start();
    }

使用:

  homeRVAdapter.setOnFocusClickInterface(new BaseCommonListRVAdapter.OnFocusClick() {
            @Override
            public void onFocus(View view, int position, Object object, boolean focused, boolean parentFocus) {
				//设置坐标、刷新
                focusView.setBuoy(view.getLeft() + firstRV.getLeft(),
                        view.getTop() + firstRV.getTop(),
                        view.getRight()+ firstRV.getRight(),
                        view.getBottom()+ firstRV.getBottom());
            }
        });
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-03-03 16:26:11  更:2022-03-03 16:27:23 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 16:34:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码