2014-06-15 63 views
4

我已經通過進口程序兼容性庫:搖籃無法解析程序兼容性主題

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:+' 
    compile 'com.android.support:support-v4:+' 
} 
在我的{項目名}/{}模塊名/build.gradle

。圖書館出現在外部圖書館。然而,我不能構建應用程序,因爲當我嘗試,有一個在我的styles.xml錯誤:

Error:Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light' 

這是我宣佈一個主題,從程序兼容性主題派生,像這樣:

<style name="TextStyleSuperClass" parent="@style/Theme.AppCompat.Light"> 
    </style> 

你知道如何解決這個問題嗎?

+0

http://stackoverflow.com/questions/17870881/cant-find- theme-appcompat-light-for-new-android-actionbar-support –

+0

感謝您的關注,但此鏈接中的接受答案僅適用於Eclipse IDE。 Android Studio + Gradle組合應該只需將資源導入庫。但不知何故,它沒有看到資源:/。我這樣做就像它在文檔中說:https://developer.android.com/tools/support-library/setup.html#libs-with-res –

回答

0

您需要完全跳過@style。用途:

機器人:主題= 「ThemeOverlay.AppCompat.Dark.ActionBar」

這工作與SDK版本25

相關問題