I want to show a button at the end of an Android list view. How can I achieve this?
I don\'t want to stick it to the activity bottom using alignparentbottom=
alignparentbottom=
You could do something like this:
final Button btnAddMore = new Button(this); btnAddMore.setText(R.string.art_btn_moreIssues); exArticlesList = (ExpandableListView) this.findViewById(R.id.art_list_exlist); exArticlesList.addFooterView(btnAddMore);