如何解决:膨胀类android.support.v7.widget.CardView时出错 [英] How to Resolve : Error inflating class android.support.v7.widget.CardView

查看:69
本文介绍了如何解决:膨胀类android.support.v7.widget.CardView时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对该错误感到完全沮丧.我完成了我的项目,并在Android版本4.4.2的设备上运行,并且成功运行了该项目,然后我成功地将其上传到Playstore中,并再次从Playstore中进行了安装,但仍然可以正常工作.....

I'm totally frustrated over the bug. I completed my project and run on my device of Android version 4.4.2 and it ran sucessfully then I sucessfully uploaded in Playstore and again installed from Playstore and still it worked fine.....

但是后来我从我的朋友那里收到了很多崩溃报告.然后我借用了Android版本6.0.1的朋友设备,并从Android Studio运行了应用程序,并且在Splashactivity开始后,应用程序突然崩溃了.Splashactivity成功开始,然后在打开Mainactivity"之前,我曾使用片段容器加载5-6个片段...崩溃了.

But then I received a lot of crashes report from my Friends. Then I borrowed my friend device of Android Version 6.0.1 and I ran app from Android Studio and app crashed suddenly after Splashactivity started. Splashactivity started sucessfully then Before Opening Mainactivity where I have used fragment container to load 5-6 fragment...It crashed.

下面是我的错误日志报告

Below is my error log report

Caused by: android.view.InflateException: Binary XML file line #69: Binary XML file line #69: Error inflating class android.support.v7.widget.CardView
        at android.view.LayoutInflater.inflate(LayoutInflater.java:543)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:427)
        at com.nepalpolice.cdp.main.onCreateView(main.java:69)

这是布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fab="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".main">



    <LinearLayout
        android:orientation="vertical"
        android:background="@drawable/bg"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">




        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true">

            <ImageView
                android:id="@+id/imageView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true"
                android:adjustViewBounds="true"
                android:src="@drawable/main"
                />

        </RelativeLayout>
        <View
            android:layout_width="match_parent"
            android:layout_height="15dp"
            android:background="#f7f6f3"/>

        <View
            android:id="@+id/SplitLine_hor1"
            android:layout_width="match_parent"
            android:layout_height= "2dp"
            android:background="#C0C0C0" />


        <android.support.v7.widget.GridLayout
            android:id="@+id/mainGrid"
            app:orientation="horizontal"
            app:columnCount="2"
            android:background="#FEFEFE"
            app:rowCount="3"
            app:columnOrderPreserved="false"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="1dp"
            >

            <!-- Row 1 -->

            <!-- Column 1 -->
            <android.support.v7.widget.CardView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                app:layout_columnWeight="1"
                app:layout_rowWeight="1"
                android:layout_marginBottom="0dp"
                android:layout_marginLeft="0dp"
                android:layout_marginRight="0dp"
                app:cardElevation="8dp"
                app:cardCornerRadius="8dp"
                android:backgroundTint="@drawable/megaphone"
                >

                <LinearLayout
                    android:layout_gravity="center_horizontal|center_vertical"
                    android:layout_margin="16dp"
                    android:orientation="vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">

                    <ImageView
                        android:src="@drawable/notices"
                        android:layout_gravity="center_horizontal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:id='@+id/news'/>

                    <TextView
                       android:text="News "
                        android:textAlignment="center"
                        android:textColor="#0f539c"
                        android:textSize="18sp"
                        android:textStyle="bold"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />

                </LinearLayout>

            </android.support.v7.widget.CardView>

            <android.support.v7.widget.CardView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                app:layout_columnWeight="1"
                app:layout_rowWeight="1"
                android:layout_marginBottom="0dp"
                android:layout_marginLeft="0dp"
                android:layout_marginRight="0dp"
                app:cardElevation="8dp"
                app:cardCornerRadius="8dp"
                >

                <LinearLayout
                    android:layout_gravity="center_horizontal|center_vertical"
                    android:layout_margin="16dp"
                    android:orientation="vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">

                    <ImageView
                        android:id='@+id/feeds'
                        android:src="@drawable/feeds"
                        android:layout_gravity="center_horizontal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />

                    <TextView
                        android:text="Blog"
                        android:textAlignment="center"
                        android:textColor="#0f539c"
                        android:textSize="18sp"
                        android:textStyle="bold"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />

                </LinearLayout>

            </android.support.v7.widget.CardView>


  </LinearLayout>




</ScrollView>


</RelativeLayout>

我的构建gradle文件是

and my build gradle file is

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.nepalpolice.cdp"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 5
        versionName "5.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    dexOptions {
        jumboMode true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}





dependencies {
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    implementation 'com.google.firebase:firebase-storage:11.8.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation("com.github.bumptech.glide:glide:4.6.1") {
        exclude group: "com.android.support"
        implementation 'com.android.support:appcompat-v7:26.+'
        implementation 'com.android.support:support-v4:26.+'
        implementation 'com.android.support:cardview-v7:26.+'
        implementation 'com.android.support:recyclerview-v7:26.+'
        implementation 'com.google.firebase:firebase-messaging:11.8.0'
        implementation 'com.google.gms:google-services:3.1.0'
        implementation 'com.android.support:design:26.+'
        implementation 'de.hdodenhof:circleimageview:2.2.0'

        implementation 'com.theartofdev.edmodo:android-image-cropper:2.5.1'
        implementation 'com.android.support:gridlayout-v7:26.+'
        implementation 'com.github.clans:fab:1.6.2'
        testCompile 'junit:junit:4.12'
        implementation 'com.google.android.gms:play-services-maps:11.8.0'
        implementation 'com.google.firebase:firebase-firestore:11.8.0'
        implementation 'id.zelory:compressor:2.1.0'
        implementation files('libs/libGoogleAnalyticsServices.jar')


    }
    apply plugin: 'com.google.gms.google-services'
}

,图像文件是

我的主要片段是

  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_main, container, false);
    news   = (ImageView) view.findViewById(R.id.news);
    notice   = (ImageView) view.findViewById(R.id.notice);

我该如何解决.....我也关注了许多其他帖子,但也无济于事.预先感谢

How do I solve this.....I follwed many other post also but it didn't help either. Thanks in advance

推荐答案

您已经顺利实现了所有依赖项.尝试以下gradle

You have implemented all dependencies in glide. Try below gradle

等级:

dependencies {
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    implementation 'com.google.firebase:firebase-storage:11.8.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation("com.github.bumptech.glide:glide:4.6.1") {
        exclude group: "com.android.support" 
     }
        implementation 'com.android.support:appcompat-v7:26.+'
        implementation 'com.android.support:support-v4:26.+'
        implementation 'com.android.support:cardview-v7:26.+'
        implementation 'com.android.support:recyclerview-v7:26.+'
        implementation 'com.google.firebase:firebase-messaging:11.8.0'
        implementation 'com.google.gms:google-services:3.1.0'
        implementation 'com.android.support:design:26.+'
        implementation 'de.hdodenhof:circleimageview:2.2.0'

        implementation 'com.theartofdev.edmodo:android-image-cropper:2.5.1'
        implementation 'com.android.support:gridlayout-v7:26.+'
        implementation 'com.github.clans:fab:1.6.2'
        testCompile 'junit:junit:4.12'
        implementation 'com.google.android.gms:play-services-maps:11.8.0'
        implementation 'com.google.firebase:firebase-firestore:11.8.0'
        implementation 'id.zelory:compressor:2.1.0'
        implementation files('libs/libGoogleAnalyticsServices.jar')

    apply plugin: 'com.google.gms.google-services'
}

这篇关于如何解决:膨胀类android.support.v7.widget.CardView时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆