当前位置: 首页 > 知识库问答 >
问题:

inflating类Android.Support.Design.Widget.FloatingActionButton时出错

齐浩淼
2023-03-14

我的应用程序崩溃了

膨胀类Android.Support.Design.Widget.FloatingActionButton时出错

这是我的XML代码

<android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|right"
        android:layout_margin="16dp"
        android:src="@drawable/icon_right"
        app:backgroundTint="@color/green"
        android:onClick="previewphoto"
        app:layout_anchorGravity="bottom|right|end" />

这是我的卷轴

compile 'com.android.support:appcompat-v7:23.4.0' // appcompat library
compile 'com.android.support:design:23.4.0'

有人能说出我的错吗?

共有1个答案

常朗
2023-03-14

试过你的代码,问题出在23.4.0库上。

升级到24.+,库中没有错误。

例如:

implementation 'com.android.support:appcompat-v7:24.2.1' // appcompat library
implementation 'com.android.support:design:24.2.1'

您还需要将编译版本更改为24。

compileSdkVersion 24
 类似资料: