This post explains how you can add a footer for ListView
//code to set adapter to populate a footer View footerView = ((LayoutInflater)MainActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footerview, null, false); list.addFooterView(footerView);
Comments
Post a Comment