0

我正在尝试将两个按钮添加到列表视图的底部:

footerView = ((LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.page_navigation, null, false); 
listView = (ListView) findViewById(R.id.list);
listView.addFooterView(footerView);

到目前为止,我没有问题,但是当我试图操纵元素的可见性时,footerview我得到了一个空指针异常。根据其他问题的答案,也许使用片段是一个更好的解决方案。任何想法如何做到这一点

nextPage = (Button) findViewById(R.id.next);
previousPage = (Button) findViewById(R.id.prev);
mainNav = (Button) findViewById(R.id.previousNext);

上面的按钮是footerView元素,我正在尝试控制它们的可见性并更新listView项目以响应单击此按钮(我的意思是可以回调此按钮吗?)提前谢谢,对不起,我的英语不好

4

1 回答 1

1

尝试

nextPage = (Button) footerView.findViewById(R.id.next);
previousPage = (Button) footerView.findViewById(R.id.prev);
mainNav = (Button) footerView.findViewById(R.id.previousNext);
于 2013-10-13T19:20:37.840 回答