在当前主题中找不到样式 'floatingActionButtonStyle'

In current theme failed to find style 'floatingActionButtonStyle'

未能在当前主题中找到样式“floatingActionButtonStyle”。

我什至在 style.xml

中尝试这样做
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="floatingActionButtonStyle">@style/Widget.Design.FloatingActionButton</item>
</style>

没用。我使用 Base.theme 因为我遇到了 appcompat 问题。 我的应用程序兼容性是 - 'com.android.support:appcompat-v7:28.0.0-alpha1

这是显示错误的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"

tools:context=".MainActivity">

<android.support.design.widget.FloatingActionButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:focusable="true"
    android:src="@drawable/ic_send"
    android:id="@+id/fab"
    android:tint="@android:color/white"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    app:fabSize="mini"
    />
<android.support.design.widget.TextInputLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:layout_toLeftOf="@+id/fab"
    android:layout_alignParentBottom="true"

    android:layout_toStartOf="@+id/fab"
    android:layout_alignParentStart="true"

    android:layout_alignParentLeft="true"
    >

    <EditText
        android:id="@+id/input"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Message..."
        android:inputType="text" />

</android.support.design.widget.TextInputLayout>

<ListView
    android:id="@+id/list_of_message"
    android:layout_alignParentTop="true"
    android:layout_alignParentStart="true"
    android:layout_above="@+id/fab"
    android:dividerHeight="16dp"
    android:divider="@android:color/transparent"
    android:layout_marginBottom="16dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true">

</ListView>

</RelativeLayout>

Build.gradle(应用程序)

  apply plugin: 'com.android.application'

    android {

    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.hp.chatapp"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    }
dependencies {

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

    //add library
    implementation 'com.android.support:design:27.1.1'
   // implementation 'com.firebaseui:firebase-ui-database:4.1.0'

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

在所有评论之后,这就是我想出的:

apply plugin: 'com.android.application'

android {

    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.hp.chatapp"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

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

dependencies {

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

    //add library
    implementation 'com.android.support:design:27.1.1'
    // implementation 'com.firebaseui:firebase-ui-database:4.1.0'
    // consider using implementation 'com.firebaseui:firebase-ui-database:3.1.1'
    // see the question below

}

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

我建议使用 compileSdkVersiontargetSdkVersion 27,因为如您所见,

28.0.0-alpha1 doesnt support FloatingActionButton style.

并且也可能像 alpha version 中那样引起问题。

关于 firebase-ui-database 的问题。

额外: 您可以搜索库 here 并查看有多少人在使用它或发布日期。