我是Android的新手,我有这个错误,我一直在尝试寻找解决方案,但仍然不知道如何解决这个问题。我有这个:
错误:任务':app:mergeDebugResources'执行失败。> -1
效果是我的活动中的每一个R都得到“无法解析符号R”
我一直在尝试使用gradle进行清理,构建和同步,但仍然无法正常工作..
这是我的资源: 的strings.xml
<resources>
<string name="app_name">mLibrary AeU</string>
<string name="action_search">action_search</string>
<string name="search_hint">search_hint</string>
<string name="welcome">welcome</string>
<string name="btn_logout">btn_logout</string>
</resources>
colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#2f2d79</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
<color name="callNumber">#666666</color>
<color name="author_and_year">#888888</color>
<color name="list_divider">#d9d9d9</color>
<color name="list_row_start_color">#ffffff</color>
<color name="list_row_end_color">#ffffff</color>
<color name="list_row_hover_start_color">#ebeef0</color>
<color name="list_row_hover_end_color">#ebeef0</color>
</resources>
dimens.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="title">17dp</dimen>
<dimen name="author">15dip</dimen>
<dimen name="callNumber">13dip</dimen>
<dimen name="year">13dip</dimen>
</resources>
styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
我需要你的帮助。
答案 0 :(得分:0)
您应该检查资源文件和AndroidManifest
文件。它可以通过图像资源进行关联(它们应该是.png文件,它们的名称必须是小写的。)。这一定是一个小错误。
答案 1 :(得分:0)
问题解决了!!谢谢你们。我的资产文件夹中的问题仍然是库文件