Binary XML file line #8: Error inflating class android.support.design.widget.FloatingActionButton

在使用DrawerLayout的时候出现了这个错误,可以参考以下步骤进行检查
1.确认引入对应support库

compile 'com.android.support:design:22.2.0'//版本自己确定
compile 'com.android.support:appcompat-v7:22.2.0'//版本自己确定

2.确认style中添加了对应theme


    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        -- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary
        "colorPrimaryDark">@color/colorPrimaryDark
        "colorAccent">@color/colorAccent
    style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">falseitem>
        <item name="windowNoTitle">trueitem>
    style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

3.确保你的 activity extends AppCompatActivity 并且使用 Theme.AppCompat 主题. 由于 FloatingActionButton 需要引用 colorAccent 所以请确保在你的 theme 中已经定义colorAccent

你可能感兴趣的:(Android)