我试着用Eclipse露娜开发的android工具。
确切地说,我尝试将JBoss用于科多瓦
我有问题要运行Android仿真器。因此,我首先尝试创建一个明确的Android应用程序项目,它有以下错误。


我应该做些什么来修复它们并正确地运行模拟器?
styles.xml
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>发布于 2015-02-11 07:50:18
ActionBar可以在支持库v7中找到。也许它不见了。您可以在您的项目-> Properties -> Android中右键单击,您应该会看到一个带有绿色标记的库,如下所示:

如果您在那里没有任何库,则应该导入库,方法是:->导入-> Android ->现有的安卓代码到工作区,然后在sdk文件夹中查找库v7,如下图所示:

然后单击finish:

然后返回到右键单击您的项目,然后通过单击add .按钮并选择库:

希望这能解决你的问题!
https://stackoverflow.com/questions/28448720
复制相似问题