我已經做了許多關於這個主題的搜索。我做了以下幾點:錯誤膨脹類android.support.v4.widget.drawerlayout
- 確認支持庫是最新的通過SDK管理器。
- 進入構建路徑和順序和導出選項卡以確保檢查依賴關係。
- 清理我的項目並重新啓動。
- 右鍵單擊項目 - > android tools - >添加支持庫。
我已經使用支持庫的另一個項目,它工作正常,但我沒有使用drawerlayout。下面是我在我的activity類中調用的xml文件。當它調用setContentView(R.layout.main_sliding_layout);
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/list_slidermenu"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@color/list_divider"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_selector"
android:background="@color/list_background"/>
</android.support.v4.widget.DrawerLayout>
我希望同樣的發生在我身上...只有時間才能告訴我們添加此:「( –
的IOL ... !!有時這很棘手android開發;-)只需重新啓動eclipse /重新啓動PC。 :D –