转载

Android:加载Android Design Support Library异常解决方案

Google最新的兼容包Android Design Support Library增加了许多符合Material Design设计规范的控件,如Navigation View,Floating Action Button,SnackBar,Tabs,CoordinatorLayout,AppbarLayout,CollapsingToolbarLayout等。

笔者也及时更新了SDK,获得了Android Design Support Library支持包,但是在导入eclipse工程的过程中出了一些问题,报出“ Error: No resource found that matches the given name: attr 'backgroundTint' ”的异常。经过研究,才知道Android Design Support Library的实现是基于AppCompat包的,使用要增加AppCompat的支持,此时按理只需要“Right-click the library project folder and select  Properties > click   Add  > Add  appcompat_v7  > click  Apply”。但是这样做了还没完,按上述操作后,eclipse工程下的目录的红叉虽然消失了,但工程目录仍然还是有红叉的。这个问题就是ADT插件的老问题了,此时选择选项菜单 Project > Choose Clean...即可解决问题。

正文到此结束
Loading...