Ich versuche, meine HelloWorld-Anwendung Holo-Thema zu Material.Light.DarkActionBar Thema (wie von What's neue Android Development Tools Sitzung gesagt). Aber ich habe folgenden Fehler bekommen. Ich versuche, Ziel-SDK-Version ist 21 zu ändern. Aber wir hatten nicht 21 SDK in SDK-Manager. In dieser Sitzung sagten sie, setze Stil-XML für v-21.Keine Ressource gefunden, die den angegebenen Namen 'android: Theme.Material.Light.DarkActionBar'
Werte/styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
Werte-V21/styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Material.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.ramapps.helloworld"
minSdkVersion 15
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
Fehler:
Error:Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Material.Light.DarkActionBar'.
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
/Applications/Android Studio.app/sdk/build-tools/android-4.4W/aapt package -f --no-crunch -I /Applications/Android Studio.app/sdk/platforms/android-20/android.jar -M /Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/intermediates/manifests/debug/AndroidManifest.xml -S /Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/intermediates/res/debug -A /Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/intermediates/assets/debug -m -J /Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/generated/source/r/debug -F /Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/intermediates/libs/app-debug.ap_ --debug-mode --custom-package com.ramapps.helloworld -0 apk
Error Code:
1
Output:
/Users/Ram_PC/Ram/MyDrive/My_Workspaces/Android_Studio_Workspace_L/HelloWorld/app/build/intermediates/res/debug/values-v21/values.xml:7: error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Material.Light.DarkActionBar'.
* Aber wir hatten nicht 21 SDK in SDK Manager * Was sagt Ihnen das? Außerdem sollten Sie wahrscheinlich Ihre Manifest-XML für die API-Versionen ändern. –
@ThorstenDittmar In SDK Manager erwähnt sie wie Android L (API 20, L Vorschau) .Auch habe ich versucht, MinSDK-Version in Manifest xml.Aber nicht funktioniert – Ramprasad
AFAIK API20 ist mehr oder weniger für Wearables (wie Sie in Ihrem Fehler sehen können Es verwendet Android-4.4W). Das Ändern von _compileSdkVersion_ in _'android-L'_ könnte helfen. – harism