搜尋

首頁  >  問答  >  主體

android - No resource found that matches the given name

从GitHub上下载的代码家的NumberProgressBar,导入adt之后报错如下:

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

xml文件内容如下:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

</resources>

这个问题该如何解决?

迷茫迷茫2772 天前594

全部回覆(2)我來回復

  • 高洛峰

    高洛峰2017-04-17 12:03:28

    android-support-v7-appcompat沒有找到這個依賴,最好先把他原來的v7刪掉,然後重新導入你自己的v7包做依賴,一句話就是確保你的工程引用的v7 library路徑正確,方法:右鍵你引入的工程->property->(左)Android
    我猜你的左邊框中包應該是紅色的,選中remove掉然後重新Add鍵導入你的v7包;
    你也可以試試在導入他的工程時勾選 copy into workpace選項

    回覆
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 12:03:28

    如果你用android studio的話。
    直接gradle裡面這樣即搞定。
    dependencies {
    compile 'com.daimajia.numberprogressbar:library:1.2@aar'
    }

    不用搞啥配置了。

    回覆
    0
  • 取消回覆