How do I make sure my app is only for vertical layout?
I have tried android:screenOrientation=\"portrait\" but that doesn\'t seem to do the trick.
android:screenOrientation=\"portrait\"
you have to change into AndroidManifest.xml.
for each activity you have to insert:
android:configChanges = "orientation" android:screenOrientation = "portrait"
for e.g.:
This works for a single activity.. But there seems no application wide setting there.