Reputation: 17
I'm new in this android world...I would like to have this menu (I don't think if I can call it like that):
Image:
It has "Speed Dial", "Recents", etc. When one of them is selected, it got a border-bottom. What is the easiest way to get this system?
Upvotes: 0
Views: 243
Reputation: 1103
When the user hit the keypad button at the bottom, the menu bar/action-bar disappear. use the following code to achieve that
getActionbar().hide();
getActionbar().show();
The following tutorials would be helpful
Cheers! Happy Coding!
Upvotes: 1