Fix activities that want to handle screen size and orientation changes themselves.

In API level 13 the android:configChanges property was changed incompatably.

In API level 12 and below, an activity that wanted to handle screen size and orientation changes
could achieve that by specifying

    android:configChanges="orientation"

Starting with API level 13  the activity must specify

    android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize"

This change updates all the activities in ApiDemos that want to handle screen size and orientation
changes themselves.

Fixes b/5522551 ApiDemos OpenGL ES rotation-without-restarting-Activity broken for API levels 13+

Change-Id: Ibc8b2b77eab9be279b56c026d76787d7185c62c9
1 file changed