我的布局main.xml出错: android.view.InflateException:二进制XML文件行#406:错误膨胀类
我的应用程序在S4 4.4.2上运行但在5.0.2上运行
drawable-mdpi / loupe.png => 31 * 32像素 我的抽奖中只有一张loupe.png图片。
图像的大小是正确的,也是RelativeLayout中的位置。
main.xml: 第406行:最后一个“ImageView”
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
>
...
<ImageView
android:id="@+id/cancel_search"
android:src="@drawable/annuler"
android:layout_width="65dip"
android:layout_height="25dip"
android:layout_marginRight="75dip"
android:layout_marginBottom="27dp"
android:layout_alignParentRight="true"
android:layout_alignBottom="@+id/main_title"
/>
<EditText
android:id="@+id/search_field"
android:layout_width="fill_parent"
android:layout_height="25dip"
android:singleLine="true"
android:textColor="#666666"
android:paddingRight="15dp"
android:paddingLeft="35dp"
android:layout_marginBottom="27dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_alignParentLeft="true"
android:layout_alignBottom="@+id/main_title"
android:background="@drawable/recherche"
android:focusable="false"
android:focusableInTouchMode="false"
android:imeOptions="actionSearch"
android:hint="@string/rechercher"
android:inputType="textMultiLine|textNoSuggestions"
/>
<ImageView
android:id="@+id/loupe"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignBottom="@+id/search_field"
android:layout_alignLeft="@+id/search_field"
android:layout_marginLeft="14dp"
android:layout_marginBottom="8dp"
android:src="@drawable/loupe" />
</RelativeLayout>