我的应用程序出现此错误



我在互联网上搜索错误,我尝试了所有方法,但是没有看到错误。我将不胜感激。

这是我的xml文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@drawable/bg_call_incoming"
android:orientation="vertical">
           ...
           <android.support.design.widget.FloatingActionButton//line80
            android:id="@+id/fabCallButton"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="center"
            app:srcCompat="@drawable/ic_call_white_24dp"
            app:tint="#004684"
            app:rippleColor="@color/ripple_color"
            tools:ignore="VectorDrawableCompat" />
            ...

Build.gradle:
dependencies {
    implementation fileTree(dir: 'libs',include: ['*.jar'])
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.google.firebase:firebase-messaging:15.0.0'
}

Loggat:

最佳答案

更换

app:tint="#004684"


app:backgroundTint="#004684"

关于android - InflateException- float 操作按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50228963/

10-10 01:53