我的问题是我在我的android项目中styles.xml
收到错误。可能是由于我的R.java
没有生成。我正在使用支持库appcompact_V7
支持库。任何人都可以指定我在程序中犯的错误。这是我的代码......
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
{ AT THE BELOW LINE I AM GETTING THE ERROR}
<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>
我的机器人manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bq.sample"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.AppCompat.Light" >
<activity
android:name=".Image"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:1)
您只需将样式更改为<style name="AppBaseTheme" parent="android:Theme.Light">
而不是<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
如果您仍然遇到No resource identifier found for attribute 'showAsAction' in package
之类的错误,那么只需从每个xml文件中的res / menu文件夹中删除android:showAsAction="never"
。
答案 1 :(得分:0)
在我们的 style.xml 中更改第一个样式标记,如下所示:
<style name="AppBaseTheme" parent="android:Theme.Light">
答案 2 :(得分:0)
我得到的错误是 无法解析符号“Theme.AppCompat.Light”
我不确定你是否有同样的问题。 这个方法解决了我的问题。