我正在使用calendarview和drawerlayout,並且我弄出這個錯誤。二進制XML文件行#14:您必須提供layout_width屬性
我的佈局是這樣的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/EstiloBase"
android:orientation="vertical">
<include
android:id="@+id/tool_bar_dashboard"
layout="@layout/toolbar" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal">
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="276dp"
android:layout_height="match_parent"
android:orientation="horizontal">
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
</android.support.v4.widget.DrawerLayout>
<LinearLayout
android:id="@+id/calendar1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"/>
</LinearLayout>
</LinearLayout>
我不知道什麼是錯誤,我試圖改變所有layout_witdth atributtes到其他值,但誤差不disapear。
我的工具欄佈局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark"></android.support.v7.widget.Toolbar>
編輯:最後,我找不到錯誤。所以我不得不回到我的應用程序的其他版本,這很好,但兩個版本都有相同的代碼。我不明白。
在第一'清潔Rebuild' –
我這樣做,並且誤差不disapear – garciam202
發表您的佈局'toolbar'以及 –