OK、このエラー(タイトル)が表示されます。多くの投稿は、テーマをApp.Appcompatに変更する(Android studio)でさえも)と私に提案しました。
マニフェストファイル:
<uses-permission Android:name="Android.permission.INTERNET" />
<application
Android:allowBackup="true"
Android:icon="@mipmap/ic_launcher"
Android:label="@string/app_name"
Android:supportsRtl="true"
Android:theme="@style/Theme.AppCompat">
<activity
Android:name=".activity.MainActivity"
Android:label="@string/app_name"
Android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
Android:name=".activity.ContactAcitivty"
Android:label="@string/activity_title_contact" />
<activity
Android:name=".activity.CopyrightActivity"
Android:label="@string/activity_title_copyright" />
<activity Android:name=".activity.FormActivity">
<intent-filter>
<action Android:name="info.androidhive.navigationdrawer.activity.FormActivity" />
<category Android:name="Android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
Style.xml
<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>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
しかし、まだ、何も変わっていません。
私は以前にこの問題を抱えていなかったので、何が起こったのかわかりません(前にマニフェストファイルにApp.compatを追加しませんでした)
Gradle:
compile 'com.Android.support:appcompat-v7:24.0.0-beta1'
compile 'com.Android.support:design:24.0.0-beta1'
compile 'com.Android.support:support-v4:24.0.0-beta1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.Android.support.constraint:constraint-layout:+'
testCompile 'junit:junit:4.12'
エラーログ:
Java.lang.IllegalArgumentException: You need to use a Theme.AppCompat theme (or descendant) with the design library.
at Android.support.design.widget.ThemeUtils.checkAppCompatTheme(ThemeUtils.Java:36)
at Android.support.design.widget.NavigationView.<init> (NavigationView.Java:102)
at Android.support.design.widget.NavigationView.<init>(NavigationView.Java:96)
at Java.lang.reflect.Constructor.newInstance(Constructor.Java:423)
at Android.view.LayoutInflater.createViewFromTag(LayoutInflater.Java:727) at Android.view.LayoutInflater.rInflate_Original(LayoutInflater.Java:858)
at Android.view.LayoutInflater_Delegate.rInflate(LayoutInflater_Delegate.Java:70)
at Android.view.LayoutInflater.rInflate(LayoutInflater.Java:834)
at Android.view.LayoutInflater.rInflateChildren(LayoutInflater.Java:821)
at Android.view.LayoutInflater.inflate(LayoutInflater.Java:518)
at Android.view.LayoutInflater.inflate(LayoutInflater.Java:397)
ご協力いただきありがとうございます
この変更を試してください:
gradleで:
compile 'com.Android.support:appcompat-v7:25.2.0'
compile 'com.Android.support:support-v4:25.2.0'
compile 'com.Android.support:design:25.2.0'
また、マニフェストでappcompat
テーマをNavaigationドロワーに追加します `アクティビティ
<activity Android:name=".activity.FormActivity"
Android:theme="@style/Theme.AppCompat">
<intent-filter>
<action Android:name="info.androidhive.navigationdrawer.activity.FormActivity" />
<category Android:name="Android.intent.category.DEFAULT" />
</intent-filter>
</activity>
MainActivity
は@style/AppTheme.NoActionBar
テーマを使用していますが、Theme.AppCompat
の子孫ではありません
変化する
<style name="AppTheme.NoActionBar">
に
<style name="AppTheme.NoActionBar" parent="AppTheme">
制約レイアウトを使用している場合は、1.1.3以上のバージョンを使用していることを確認してください。バージョン1.0.2を使用していたときにこのエラーが発生しました