标签:
问题描述:
使用eclipse创建一个Android项目时,发现project列表中会多创建出一个appcompat_v7项目,再创建一个Android项目时,又会再多出一个appcompat_v7_2,如果再次创建,会以此类推地创建出appcompat_v7_x格式的“多余项目”出来(此情况在ADT升级为22.6.x版本后出现,22.3.x前的版本不会有)
查明原因:
ADT在22.3.x版本前没有出现该情况,升级为22.6.x版本后,才出现该情况,可以猜测是新版本导致。猜测到原因后可以分析下appcompat_v7是用来做什么的,展开appcompat_v7项目,会发现有一个readme.txt文件,双击查看,该文件描述如下:
Library Project including compatibility ActionBar.
This can be used by an Android project to provide
access to ActionBar on applications running on API 7+.
There is technically no source, but the src folder is necessary
to ensure that the build system works. The content is actually
located in libs/android-support-v7-appcompat.jar.
The accompanying resources must also be included in the application.
原文:
http://blog.csdn.net/crazykbc/article/details/21553699
遇到的问题:The container ‘Android Dependencies‘ references non existing library ‘E:\my_
解决:解决办法:右击library project,选择Build Path->Configure Build Path->Order and Export->Select All将所有包都选上就OK 啦
原文:http://bbs.csdn.net/topics/390922695
关于Eclipse创建Android项目时,会多出一个appcompat_v7的问题
标签:
原文地址:http://www.cnblogs.com/H-BolinBlog/p/5332332.html