我跟着this tutorial製作滑動的拉我的應用程序之後,我遇到了錯誤:的Android滑標籤錯誤
Unable to start activity ComponentInfo{com.cap2.macsanity.droidgency/com.cap2.macsanity.droidgency.MainActivity}: android.view.InflateException: Binary XML file line #2: Error inflating class
這是我的活動main.xml中
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
<com.cap2.macsanity.droidgency.
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/ColorPrimary"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"></android.support.v4.view.ViewPager>
</LinearLayout>
任何一個都可以幫我?提前致謝。
編輯2# 這是固定的,現在解決謝謝。
你可以在這裏發佈你的xml嗎? – NilayDani
sir/mam nilaydani我已經編輯了我的文章。 – Macsanity