How can I create layout like below Image. Is there any ListView example like in below Image? And, how can i create Button at footer in android?
Can anyone give me some idea of what is used in this IMAGE i am not getting it.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can achieve such result using
RelativeLayout, and inside of it arranging the child views in a flat (meaning effective and fast) structure relatively to each other:You have
logoimage withalignParentTop = true,securityimage or button withlayout_belowset tologo,controlbutton withalignParentBottom = true, and finallylistlistview withlayout_belowset tosecurityandlayout_aboveset to control, having alayout_heightoffill-parentofmatch-parent.Edit: The
ListViewcontrol above also uses custom a item renderer holding -probably- aTextViewwith a custom image set asdrawableLeft.