i have a xml file contains some UI elements and a listview, above the listview there is relativelayout , i want when scrolling the listview , the relativelayout scrolls with it, how?
Share
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 use
ListView.addHeaderView(View view).Note that in this case you should exclude your
RelativeLayoutfrom xml and create it in runtime. AlsoaddHeaderViewMUST be called beforesetAdapter.UPDATE
just extract
RelativeLayoutto a separate xml file (e.g.header.xml).and then inflate it in the code: