I would like to create a custom made menu on the bottom of the screen, This menu will be as buttons and, it will always be visible first, if the user scrolls down, it will be visible, and scrolls upp.
How is this possible?
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.
Is this menu always visible? or does it only appear when the “menu” button is pressed?
An easy way to do this is to use a RelativeLayout as your main ViewGroup. Create a second ViewGroup (LinearLayout, RelativeLayout… or whatever) that contains your menu items and anchor the whole group to the bottom of the screen. If you were to then, put a ListView above that second group it would occupy all the space above your menu controls and the menu controls themselves would always be visible.
Hope that was helpful.