Split the screen on android tablet
android, android-layout
Solution
Check out the article on multi-pane layouts on the Android Design site. It should help clarify the idea behind it.
As for actually implementing them, you'll have to use `Fragment`s. Here are a couple tutorials to get you started.
Problem
I've seen several tablet apps that split the screen into two parts. Usually a menu and and a main window. I tried to google something about it, but couldn't find anything. Is there an out of the box solution for this, or do I have build it on my own?