マニフェストファイルに次のエラーがあるため、適切に使用する方法Androidサポートライブラリ:
Android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
error: Error: No resource found that matches the given name
(at 'theme' with value '@style/Theme.AppCompat.Light.DarkActionBar').
AndroidManifest.xml /ttab line 39 Android AAPT Problem
私の友人は以前に他のコンピューターでこれを実装していましたが、今は一人でこれをしなければなりません。私を助けてください:)
ADTを使用しています
私のstyles.xml:
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
<style name="Theme.AppCompat.Light">
<!-- theme customizations here. -->
</style>
<style name="Theme.AppCompat.Light.DarkActionBar" parent="Theme.AppCompat.Light">
<!-- theme customizations here. -->
</style>
</resources>
「Android-support-v7-appcompat」プロジェクト:
一方、「Android-support-v7-appcompat」を使用するプロジェクト:
Gradleを使用している場合、互換性ライブラリの最新バージョンに問題があります。
build.gradle
ファイルに次のものがあり、末尾に'+'
がある場合:
dependencies {
compile 'com.Android.support:appcompat-v7:+'
}
次に、必要なよりも新しいバージョンのライブラリを取得している可能性があります。
依存関係を次のように変更します。
dependencies {
compile 'com.Android.support:appcompat-v7:18.0+'
}
問題が解決する場合があります。
やってみてください
Android:theme="Theme.AppCompat.Light.DarkActionBar"
の代わりに
Android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
アプリの依存関係ファイルで、依存関係があるかどうかを確認します
compile 'com.Android.support:appcompatv[anything here]
または
implement 'com.Android.support:appcompat[anything here]
それらを削除またはコメントアウトし、自動提案の「電球」をクリックして、ライブラリ依存関係の追加を選択します。 appcompatのオートフィルバルブをクリック
Appcompatの最初のバージョンのオプションをスクロールします。ライブラリが依存関係のリストの下に追加されます。アプリを再構築するか、キャッシュを無効にして再起動します
あるケースでは、これは機能せず、プロジェクトを含むフォルダーに移動し、.gradleファイルを削除してAndroid Studioが機能しました。 https:/のSneh Pandyaの回答から得ました。 /reformatcode.com/code/Android/error-while-gradle-sync