我发现了一个奇怪的异常android.view.InflateException: Binary XML file line #0: Binary XML file line #0: Error inflating class <unknown>.
这个异常仅发生在api 21及其下面的rootView中的适配器类中,我正在给布局充气。
rootView = inflater.inflate(R.layout.custom_layout, parent, false);
这是我的背景文件:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/holo_red_dark" />
<corners android:radius="5dp" />
</shape>
</item>
<item
android:bottom="2dp"
android:left="0dp"
android:right="0dp"
android:top="0dp">
<shape android:shape="rectangle">
<solid android:color="@color/login_back" />
<corners android:radius="5dp" />
</shape>
</item>
</layer-list>
这是我的xml: 这是我在我的代码中使用的xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="25dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ll_top"
android:layout_alignParentTop="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:orientation="horizontal"
android:background="@drawable/my_background"
>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/ll_top"
android:layout_marginTop="-20dp"
android:orientation="vertical">
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
我认为您使用的是在较低API中不兼容的内容。 我确信你正在使用ripple,所以在较低的api版本中使用选择器进行更改,因为在较低的api版本中不支持。