Android can only be called from within the same library group prefix (referenced groupId=androidx

36 篇文章 0 订阅
本文探讨了在Android开发中遇到的一个警告,即使用ArgbEvaluator.getInstance()时触发的库组限制。警告表明该API只能在相同的库组内调用。解决方法是在方法上添加@SuppressLint('RestrictedApi')注解来消除警告。此问题涉及到Android开发中的API使用限制和代码优化。
摘要由CSDN通过智能技术生成

告警提示

ArgbEvaluator.getInstance can only be called from within the same library group prefix (referenced groupId=androidx.vectordrawable with prefix androidx from groupId=SchoolFacePay)
Inspection info:This API has been flagged with a restriction that has not been met. Examples of API restrictions: * Method can only be invoked by a subclass * Method can only be accessed from within the same library (defined by the Gradle library group id) * Method can only be accessed from tests. You can add your own API restrictions with the @RestrictTo annotation.

告警代码

private void initGradualAnim() {

        @SuppressLint("Recycle") ValueAnimator colorAnim
                = ObjectAnimator.ofInt(lcPayBack, "backgroundColor", BLUE, GREEN);
        colorAnim.setDuration(8000);
        colorAnim.setEvaluator(ArgbEvaluator.getInstance());
        colorAnim.setRepeatCount(ValueAnimator.INFINITE);
        colorAnim.setRepeatMode(ValueAnimator.REVERSE);

    }

告警位置

在这里插入图片描述

解决办法 一

在方法前面添加

@SuppressLint("RestrictedApi")

具体

@SuppressLint("RestrictedApi")
    private void initGradualAnim() {

        @SuppressLint("Recycle") ValueAnimator colorAnim
                = ObjectAnimator.ofInt(lcPayBack, "backgroundColor", BLUE, GREEN);
        colorAnim.setDuration(8000);
        colorAnim.setEvaluator(ArgbEvaluator.getInstance());
        colorAnim.setRepeatCount(ValueAnimator.INFINITE);
        colorAnim.setRepeatMode(ValueAnimator.REVERSE);

    }
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

全面解读

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值