2017-12-19 15 views
0

私の電話でアプリを実行できないという問題がありますが、ASではコンパイルできません。Androidスタジオでのビルドに失敗しました

Error:Error: Unsupported node 'item' Error:Execution failed for task ':app:mergeDebugResources'. C:\Users\X\AndroidStudioProjects\X\app\src\main\res\values\styles.xml: Error: Unsupported node 'item'

これは私の "style.xml" ファイルです:

<resources> 
    <color name="colorPrimary">#21222c</color> 
    <color name="colorPrimaryDark">#21222c</color> 
    <color name="colorAccent">#fff</color> 
    <!-- blue style gradient --> 
    <color name="bluestartcolor">#47f9fe</color> 
    <color name="blueendcolor">#1295fd</color> 
    <!-- orange style gradient --> 
    <color name="orangestartcolor">#feed64</color> 
    <color name="orangeendcolor">#dda660</color> 
    <!-- pink style gradient --> 
    <color name="pinkstartcolor">#fd75a5</color> 
    <color name="pinkendcolor">#ea1e77</color> 
    <!-- purplle style gradient --> 
    <color name="purplestartcolor">#f75fe1</color> 
    <color name="purpeendcolor">#c425ec</color> 
    <!-- green style gradient --> 
    <color name="greenstartcolor">#b4fa51</color> 
    <color name="greenendcolor">#78cb59</color> 
    </resources> 

そしてこれが私である私はitemcolorを交換しようとしたが、エラーメッセージはこの1つである

Error:No resource found that matches the given name (at 'theme' with value '@style/AppTheme').

Error:No resource found that matches the given name (at 'theme' with value '@style/AppTheme').

Error:Execution failed for task ':app:processDebugResources'. com.android.ide.common.process.ProcessException: Failed to execute aapt

Information:BUILD FAILED

"colors.xml"ファイル:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
<color name="colorPrimary">#21222c</color> 
<color name="colorPrimaryDark">#21222c</color> 
<color name="colorAccent">#fff</color> 
</resources> 

あなたに知ってもらえるようなものが必要な場合は、私に知らせてください。

+0

可能な重複[いいえリソースが見つからその一致する指定された名前 '@スタイル/ Theme.AppCompat.Light'](https://stackoverflow.com/question/21059612/no-resource-found-that-given-name-style-theme-appcompat-lightに一致) – Psytho

+0

「@ style/AppTheme」はどこで宣言されていますか? –

+0

実際には、それらのスタイルはそれぞれ異なるファイル "xcolor.xml"にあります – pintovillamar

答えて

0

お使いの携帯電話でUSBデバッグが有効になっていますか?これはbuild.gradleファイルです。

apply plugin: 'com.android.application' 
android { 
compileSdkVersion 26 
defaultConfig { 
    applicationId "com.example.pawan.listvieew" 
    minSdkVersion 15 
    targetSdkVersion 26 
    versionCode 1 
    versionName "1.0" 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 

}

dependencies { 
implementation fileTree(dir: 'libs', include: ['*.jar']) 
implementation 'com.android.support:appcompat-v7:26.1.0' 
implementation 'com.android.support.constraint:constraint-layout:1.0.2' 
testImplementation 'junit:junit:4.12' 
androidTestImplementation 'com.android.support.test:runner:1.0.1' 
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'} 

おかげ

関連する問題