web-dev-qa-db-ja.com

クラスを膨らませるエラーAndroid.support.design.widget.CoordinatorLayout

私のアプリケーションでFloatingActionButtonを使用したいので、これを読みます: https://guides.codepath.com/Android/Floating-Action-Buttons#google-s-official-support-library but when私はこのエラーがあるアクティビティを実行します:

Java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xavier_laffargue.podcast/com.xavier_laffargue.podcast.ACT_Test}: Android.view.InflateException: Binary XML file line #1: Error inflating class Android.support.design.widget.CoordinatorLayout

XMLファイル

<Android.support.design.widget.CoordinatorLayout
    Android:id="@+id/main_content"
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent">

    <ListView
        Android:id="@+id/lvToDoList"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"></ListView>

    <Android.support.design.widget.FloatingActionButton
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_gravity="bottom|right"
        Android:layout_margin="24dp"
        Android:src="@drawable/ic_action_refresh"
        app:layout_anchor="@id/lvToDoList"
        app:layout_anchorGravity="bottom|right|end" />

</Android.support.design.widget.CoordinatorLayout>

Graddle

*apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.xavier_laffargue.podcast"
        minSdkVersion 21
        targetSdkVersion 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile 'com.Android.support:appcompat-v7:22.2.0'
    compile 'com.Android.support:support-v4:22.2.0'
    compile 'com.Android.support:design:22.2.0'

    compile 'com.Android.support:multidex:1.0.1'
    compile 'com.Android.support:support-v13:22.2.0'
    compile 'com.Android.support:cardview-v7:21.0.+'
    compile 'com.Android.support:recyclerview-v7:21.0.+'

}
34
xav-stargate

Activityを使用する場合は、AppCompatActivityに変更してください。アクティビティの場合はおそらくエラーになります。

40
Mizuki Sonoko

FloatingActionButtonで次の行を使用します(appの代わりにAndroid):

app:backgroundTint="@color/colorAccent"
27
Preet Jay

compile 'com.Android.support:design:23.0.1'プロジェクトbuild.gradleファイル内

18
rakesh rajput

同じエラーが発生しました。プロジェクトの親テーマを変更するだけです

<style name="Base.AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

またはその他のTheme.AppCompat *

16
unicredit

AndroidX Dependencyを使用している場合

依存関係の変更に加えて、[〜#〜] xml [〜#〜]も変更する必要があります。

from

<Android.support.design.widget.CoordinatorLayout 

to

<androidx.coordinatorlayout.widget.CoordinatorLayout
12
Amir De

サポートライブラリを含める必要があります。

  1. [プロジェクト構造]-> [依存関係]に移動します
  2. 右側で[+]をクリックし、[1。ライブラリの依存関係]を選択します
  3. 「Android.support」を検索します
  4. 両方を追加します:
    • com.Android.support:appcompat-v7:.......
    • com.Android.support:design:........
  5. 同期Gradle enter image description here ハッピーコディング! :)
6
Ivo Stoyanov

両方が必要:

  • fragmentActivityの代わりにAppCompatActivityを拡張します

    public class MyActivity extends AppCompatActivity
    
  • 使用されているスタイルの親(/res/values/styles.xml)

    <style name="MyStyle" parent="Theme.AppCompat">
    

さらに:

  • styles.xmlで色を定義する

    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_dark</item>
    <item name="colorAccent">@color/accent</item>
    
4
electrobabe

これらの依存関係をgradleファイルに追加します。これにより、問題が解決する場合があります。

dependencies {
   compile 'com.Android.support:appcompat-v7:23.1.1'
   compile 'com.Android.support:design:23.1.1'
   ...
}
3
FN90

Xamarin開発者向け:

(supports Android API 7 to 22 +)

  1. 次のコンポーネントがインストールされていることを確認してください:
    • Androidサポートデザインライブラリ
    • Androidサポートライブラリv7 AppCompat
  2. これらのコンポーネントのすべてのNuGetパッケージがインストールされ、参照されていることを確認してください。これらは:
    • Xamarin.Android.Support.Design
    • Xamarin.Android.Support.v4
    • Xamarin.Android.Support.v7.AppCompat
    • Xamarin.Android.Support.v7.RecyclerView
  3. AppsアクティビティはAndroid.Support.V7.App.AppCompatActivityから派生する必要があります
  4. 使用するスタイルは、Theme.AppCompat.*スタイルから派生する必要があります。したがって、Resources\values\styles.xmlは次のようになります。

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <style name="YourAppTheme" parent="Theme.AppCompat">
            <item name="colorPrimaryDark">#AB000D</item>
            <item name="colorPrimary">#E53935</item>
            <item name="colorAccent">#00B8D4</item>
        </style>
        <!-- other styles... -->
    </resources>
    
  5. また、AndroidManifest.xmlで実際にテーマを使用していることを確認してください

    <application Android:theme="@style/YourAppTheme"></application>
    
3
Bruno Zell

アプリのビルドグラドルに次のサポートライブラリを追加する必要があります。

    compile 'com.Android.support:design:23.0.1'

それは昨年でしたが、現在の最新バージョンは

    compile 'com.Android.support:design:27.0.2'
1
Josi

AndroidX依存関係を使用している場合。 xmlファイルで、すべての

 Android.support.???

coordinatorLayoutのノード(含まれるActionBarなど)も次のように置き換えられます。

androidx.??? (or com.google.Android.???)

もの。

0
CodeToLife

私にとっては、androidxAndroid.support.v7ライブラリ。

このバージョンのエラーについては、こちらのソリューションを参照してください: https://stackoverflow.com/a/52490825/176249

0
Mikeumus