1

嗨,我的 android 应用程序有问题。问题是当我尝试设置新视图时。

    public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
        if (v == null) {
            try{
            LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.list, null);
            }
            catch(Exception e){
                String a=e.toString();
            }
        } 

在行 v = vi.inflate(R.layout.list, null); 我收到此错误:

    android.view.InflateException: Binary XML file line #5: Error inflating class <unknown> 

这也是我的 list.xml 文件:

    <?xml version="1.0" encoding="utf-8"?>
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="15dp"
        android:background="@drawable/bg_seznam" >
        <TextView
            android:id="@+id/item_title"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingLeft="17dp"
            android:textColor="#ffffff"
            android:textSize="20dp"
            android:textStyle="bold"
            android:typeface="serif" >
        </TextView>         
    </TableRow>
    </TableLayout>

那么有什么想法吗?

4

2 回答 2

1

我试过你的代码,它在我这边运行良好。
也许进行清理会有所帮助:项目->清理->选择您的项目->确定。

于 2012-08-07T13:57:39.443 回答
1

尝试替换这行代码

v = vi.inflate(R.layout.list, null);

通过这个:

v = vi.inflate(R.layout.list, parent, false);
于 2012-08-07T13:53:56.937 回答