2016-12-30 36 views
0

我在應用程序中使用FAB(浮動動作按鈕),但它使我過去幾天的生活變得困難。每當我創建一個單一的活動FAB工作的新項目正常,但每當我添加新的活動,它開始給我例外如何在android中刪除浮動動作按鈕膨脹異常?

android.view.InflateException: Binary XML file line #16: Error inflating class android.support.design.widget.floating action button. 

我的XML代碼如下:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v4.widget.DrawerLayout 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/drawer_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:openDrawer="start"> 

    <include 
     layout="@layout/app_bar_main" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/nav_view" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="true" 
     app:headerLayout="@layout/nav_header_main" 
     app:menu="@menu/activity_main_drawer" /> 

</android.support.v4.widget.DrawerLayout> 

我使用程序兼容性主題以及嘗試了一切,但問題依然存在。

以下爲FAB

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 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" 
    android:fitsSystemWindows="true" 
    tools:context="com.vote3d.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     > 

     <android.support.v7.widget.Toolbar 
      xmlns:local="http://schemas.android.com/apk/res-auto" 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="@color/colorAccent" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      local:navigationIcon="@mipmap/ic_menu_36dp"> 

      <ImageView 
       android:id="@+id/iv_toolbar_title" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:gravity="center" 
       android:layout_marginRight="50dp" 
       android:src="@drawable/logo"/> 

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

     <android.support.design.widget.TabLayout 
      android:id="@+id/tabs_layout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:fillViewport="true" 
      app:tabGravity="fill" 
      android:background="#e00000" 
      app:tabIndicatorColor="@android:color/white" 
      app:tabMode="fixed" 
      app:tabSelectedTextColor="@android:color/white" /> 

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

    <!-- <include layout="@layout/content_main" />--> 

    <android.support.v4.view.ViewPager 
     android:id="@+id/view_pager" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     android:background="#ffffff"/> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="30dp" 
     android:layout_height="30dp" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="@dimen/fab_margin" /> 

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

關注我的XML文件,我使用了FAB的代碼類

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); 
    fab.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View view) { 
      Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 
        .setAction("Action", null).show(); 
     } 
    }); 
+0

其中是'FloatingActionButton'代碼? – Ironman

+0

我已更新問題,請立即檢查 –

回答

0

使用下面的代碼對於浮選操作按鈕在你的XML
並做相關變更

<android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@android:drawable/ic_dialog_email" /> 

如果它仍然會給出同樣的錯誤,請提供活動的文件和文件的gradle

+0

謝謝Yogesh,但我已經使用過 –

0

請參閱this。可能是你一定錯過了什麼

0

你是否已將compile 'com.android.support:design:25.1.0'添加到你的build.gradle中?