So I have my layouts created, via this section on Android:
http://developer.android.com/guide/practices/screens_support.html
This issue occurs where, because of the additional screen real estate the sw720dp has several objects that the standard, and even the sw600dp do not include. The different layouts all load correctly, but when I’m actually handling the activities I don’t know how to determine which of the layouts is in use (so I cannot hook the extra buttons, etc.). What is the best method to use to determine this?
The simplest method would be to check if
findViewByIdreturns a non-null value before hooking up your UI elements.