当前位置 : 主页 > 网络推广 > seo >

错误:检索项目的父项时出错:找不到与给定名称“android:Theme.Holo”匹配的资

来源:互联网 收集:自由互联 发布时间:2021-06-16
Error: No resource found that matches the given name: attr ‘listViewStyle’ 我从这里尝试了一切。没有什么工作。 我已经导入API演示到API版本15的Eclipse,并且在src文件中给出错误,如“导入com.exampl
Error: No resource found that matches the given name: attr ‘listViewStyle’

我从这里尝试了一切。没有什么工作。

我已经导入API演示到API版本15的Eclipse,并且在src文件中给出错误,如“导入com.example.android.apis.R无法解决”

请帮助我。

我有错误,这在values-v11 / styles.xml文件

<style name="ThemeHolo" parent="android:Theme.Holo">
</style>

<!-- For API level 11 or later, the Holo theme is available and we prefer that. -->
<style name="ThemeHoloDialog" parent="android:Theme.Holo.Dialog">
</style>

<!-- For API level 11 or later, we can use the magical DialogWhenLarge theme. -->
<style name="ThemeDialogWhenLarge" parent="android:style/Theme.Holo.DialogWhenLarge">
</style>

还有我在values / styles.xml中的错误“错误:错误检索项目的父项:没有找到匹配给定名称’@android:style / Theme.Holo.Light.NoActionBar’的资源。在下面几行

<style name="BadTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
</style>
你可以引用Holo主题为parent =“@ android:style / Theme.Holo”,但要使用Holo主题,你必须将清单中的构建目标设置为API级别11或更高版本,还必须将style.xml文件包含Holo主题到文件夹values-v11
网友评论