So I am not a very experience Android programmer, so please be gentle with me :)
I am trying to create an app that uses fragements and from within one of these fragm
Up to API 13 there was a new value to the configChanges attribute, screenSize
So if you're using large screens make sure to add screenSize in your configChanges attribute:
android:configChanges="orientation|keyboardHidden|screenSize"
i.e.
Reference