Open itgoyo opened 6 years ago
在stackoverflow中发现很多人反馈这个问题,解决方案是在使用 TypedArray 的方法声明处顶部加上
@SuppressWarnings(“ResourceType”) 忽略该警告,然后就可以正常签名编译。具体做法如下: @SuppressWarnings("ResourceType") public SystemBarTintManager(Activity activity) { …… }
在stackoverflow中发现很多人反馈这个问题,解决方案是在使用 TypedArray 的方法声明处顶部加上