我在一个名为footer.xml的布局中有一个imageview,它实际上被添加为listview的页脚。我需要在listview的末尾动态显示图像。所以我在我的java文件中引用了imageview,如下所示< / p>
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" />
任何建议都表示赞赏。谢谢提前
答案 0 :(得分:7)
我想它应该是:
footerimage = (ImageView) footerView.findViewById(R.id.im);