Bug in fragmentframework
The framework will crash if run in portrait mode on large devices. This is because the main.xml file in folder layout-large-port has an unidentified class in it for the ItemDetailFragment as follows:
class="com.finchframework.uiframework.ItemDetailFr agment"
Comparing to the main.xml in layout-large this should probably be
class="com.enterpriseandroidbook.fragmentframework .ItemDetailFragment"
|