In the last Blog Post you learnt how to create device specific resources like Layout, Menu, Images etc.
On a phone the Employee App will display list of Employees initially and on click of an employee the DetailActivity will be called. Whereas on a Tablet the List and the Detail is shown next to each other.
Question is how to achieve this?
If you take a look at the Layout XML file you will find that for a Tablet you have a FrameLayout.
So you can check in the Activity class that if this attribute exists then its a tablet. If not then call the DetailActivity.
Source Code – Github
Follow the video to understand this better.