从android中的Support Library v7实现样式

时间:2015-11-19 06:42:24

标签: java android android-studio gradle android-support-library

我正在尝试在我的项目中实现支持库v7,并且遇到与它捆绑在一起的样式的问题。

Error:(2) Error retrieving parent for item: 

No resource found that matches the given name

 'Theme.AppCompat.Light.DarkActionBar.'.

我已经在build.gradle中包含了 com.android.support:appcompat-v7:23.1.1 ,但它没有帮助。

这是我的build.gradle依赖项

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:design:23.1.0'
    compile 'com.android.support:recyclerview-v7:23.1.0'
    compile 'com.android.support:support-annotations:+'
    compile 'com.android.support:appcompat-v7:23.1.1'
} 

这是我的styles.xml导致错误

<resources>
   <style name="AppBaseTheme" parent="android:Theme.Light"> </style>
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar."></style>
 <!-- erorr here -->
</resources>

我正在使用Android Studio 1.4和buildToolsVersion&#39; 23.0.2&#39;。

1 个答案:

答案 0 :(得分:0)

你的风格有一个错字。 删除点。

Theme.AppCompat.Light.DarkActionBar

而不是

Theme.AppCompat.Light.DarkActionBar.