1

我在名为footer.xml 的布局中有一个imageview,它实际上是作为listview 的页脚添加的。我需要在listview 的末尾动态显示图像。所以我在我的java 文件中引用了imageview,如下所示

    ImageView footerimage;
    View footerView = getLayoutInflater().inflate(R.layout.footer, null);//This is the footer layout which i have added to the listview
    footerimage = (ImageView)findViewById(R.id.im);
    footerimage.setBackgroundResource(images[i]);//images is an integer array which has drawable resources and i value is not null.
    lv.addFooterView(footerView, null, false);

我在上面代码的第四行中遇到了一个空指针异常。我还将 images[i] 更改为 R.drawable.someimage 但 NPE 仍然存在。下面是我的页脚布局

<?xml version="1.0" encoding="utf-8"?>

<ImageView
    android:id="@+id/im"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"        
    android:contentDescription="@string/app_name" />

任何建议表示赞赏。在此先感谢

4

1 回答 1

7

我想应该是:

footerimage = (ImageView) footerView.findViewById(R.id.im);
于 2012-04-25T05:51:02.850 回答