我正在使用SlidingTabLayout,它在Lollipop设备上工作正常但是当我试图在棒棒糖前设备中运行时显示错误
“android.view.InflateException:二进制XML文件行#2:错误膨胀类 在android.view.LayoutInflater.createView“
但我已经制作了另一个具有相同代码的项目,因为SlidingTabLayout在棒棒糖和棒棒糖前设备中都能正常工作。
我没有得到概率,相同的代码,但没有工作。 请帮帮我。
这是Tab的自定义布局的XML布局代码。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp"
android:background="@drawable/tab_bg"
android:orientation="vertical">
<ImageView
android:id="@+id/tabImage"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/tabText"
android:gravity="bottom|center"
android:textSize="14sp"
android:padding="4dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>