Why are you looking for problems? Instead of your idea you can use 3 layouts:
- Widgets if necessary - header
- ListView - main layout
- ImageView or other widgets - footer
ListView lv = (ListView) findViewById(R.id.listView);
View header = getLayoutInflater().inflate(R.layout.header_layout, null);
View footer = getLayoutInflater().inflate(R.layout.foorer_layout, null);
lv.addHeaderView(headerComment);
lv.addFooterView(footerComment);