-2

我得到運行時錯誤,Android應用也越來越停止我收到運行時錯誤#25:必須提供layout_width屬性

android.view.InflateException:二進制XML文件行#9:二進制XML文件行#9:錯誤充氣類android.support.design.widget.NavigationView

所致:android.view.InflateException:二進制XML文件行#9:錯誤充氣類android.support.design.widget.NavigationView

引起:android.view.InflateException:二進制XML文件行#25:二進制XML文件第25行:您必須提供一個layout_width屬性。 引起:java.lang.UnsupportedOperationException:二進制XML文件行#25:您必須提供一個layout_width屬性。

這裏是我的XML代碼

<RelativeLayout 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" 
tools:context="com.example.xxx.xxx.Main_Tab" 
> 

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

<android.support.design.widget.TabLayout 
    android:id="@+id/tab_layout1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_below="@+id/nav_view" 
    android:background="#00BCD4" 

    android:minHeight="?attr/actionBarSize" 
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> 

<android.support.v4.view.ViewPager 
    android:id="@+id/pager1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_below="@id/tab_layout1"/> 


</RelativeLayout> 

這裏是app_bar.xml

<?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.example.xxx.xxx.Main_Tab"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="#8BC34A" 
     app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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

<FrameLayout 
    android:id="@+id/frame" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> </FrameLayout> 
</android.support.design.widget.CoordinatorLayout> 

這裏是代碼activity_main_drawer

<?xml version="1.0" encoding="utf-8"?> 
<menu xmlns:android="http://schemas.android.com/apk/res/android" 

> 
<group android:checkableBehavior="single"> 
    <item 
     android:id="@+id/nav_home" 
     android:icon="@drawable/ic_home_black_24dp" 
     android:title="@string/nav_home" /> 

    <item 
     android:id="@+id/nav_notifications" 
     android:icon="@drawable/ic_notifications_black_24dp" 
     android:title="@string/nav_notifications" /> 
    </group> 

    <item android:title="Other"> 
    <menu> 
     <item 
      android:id="@+id/nav_about_us" 
      android:title="@string/nav_about_us" /> 
     <item 
      android:id="@+id/nav_privacy_policy" 
      android:title="@string/privacy_policy" /> 
    </menu> 
</item> 

</menu> 
+0

指定該線的寬度。例如150dp –

+0

我猜這個問題出現在你的'@ layout/app_bar'中。你可以發佈嗎? –

+0

您錯過了app_bar.xml中的layout_width。檢查出。 – tahsinRupam

回答

0

您的佈局似乎要被罰款。但是你在這個佈局中包含了更多的佈局。

app:headerLayout="@layout/nav_header_main" 
app:menu="@menu/activity_main_drawer" 

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

最可能的是你缺少這些佈局@layout/app_bar@layout/nav_header_main@menu/activity_main_drawer的任何一個android:layout_width屬性。

+0

我已發佈@ menu/activity_main_drawer結帳 –

+0

nav_header_main has android:layout_width –

相關問題