我是新來的android和我有這個錯誤,我一直在尋找解決方案,並且仍然不知道如何解決這個問題。我有這樣的:任務':app:mergeDebugResources'的執行失敗。 > -1
Error:Execution failed for task ':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>
我需要你的幫助。
'無法解析符號R'通常意味着您的某個資源文件中有錯誤。即佈局或樣式等 – Kuffs
嘗試清理您的項目並再次運行。 –
您能否通過您的「gradle console」選項卡提供與此相關的日誌? –