I need to make an android layout like this one.

- tile background all over the screen.
- top menu which, overlays the background ( note the shadow ).
- some sort of a table with text options, maybe pictures, which can be scrolled up and down.
- bottom menu, which appears by sliding up after a menu button is hit.
What kind of layout elements do you think I should use for that?
Thanks!
I think you should first learn about the Android Layout and XML layout design, then you can easily prepare this layout as well.
Relative Layoutwill be the better layout as compare to other layouts like Linear Layout and Table Layout.To display middle part that is showing textual description may contains
ListView(ListView because as you have mentioned Text Options should scroll up and down), but it depends on your requirement.