我有一个我试图在自定义中使用的 xml 文件ListView
。该xml
文件如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="5dp" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="50dp"
android:layout_height="50dp"
android:paddingRight="10dp"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_toRightOf="@id/imageView1"
android:textSize="25dp"
android:gravity="center"/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignBottom="@id/textView1"
android:layout_alignParentRight="true"
android:layout_marginRight="25dp"
android:baseline="@id/imageView1"
android:src="@drawable/offline" />
</RelativeLayout>
我用我的自定义列表视图给它充气,但它显示错误 inflateException
02-28 15:50:08.363: E/AndroidRuntime(19777): android.view.InflateException: Binary XML file line #24: Error inflating class <unknown>