解决style attribute ‘@android:attr/windowEnterAnimation’ not found问题的另类方法

最近在用Android-PickerView这个sdk,发现升级了gradle到3.1.2以后报@android:attr/windowEnterAnimation没有找到的问题。

在网上搜索解决方法,说是@android:attr/windowEnterAnimation这个语句的@是不需要的。与aapt2有关。使用http://wuxiaolong.me/2017/11/04/AndroidStudio3/这个帖子里的方法,在gradle.properties文件添加了android.enableAapt2=false这句话。问题是解决了,但是很显然不是最好的解决方法。as提示在2018年以后enableAapt2这句话就被废弃了。很不爽。

屏幕快照 2018-04-26 下午6.05.49.png

很奇怪的是,@android:attr/windowEnterAnimation没找到的问题报在PickerView这个sdk里面,但是sdk里面并没有出现@这个字符。于是自己搜索了自己写的代码。发现是自己的代码有这个字符,不是sdk的问题。改掉以后,居然顺利解决了这个问题。

AS报的错,提示的位置是错的,我能不能怪AS自己呢??

你可能感兴趣的:(解决style attribute ‘@android:attr/windowEnterAnimation’ not found问题的另类方法)