I have followed the information about how to emulate a SurfaceView with a TextureView and have something that works very well, until I rotate my device. The TextureView will go black and never display anything again.
I thought I'd try the good old shortcut of adding an android:configChanges element to my activity declaration in my manifest like the following:
<activity
android:name=".AndroidMimeStreamSpikeActivity"
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
But, I know that doing this kind of thing isn't really recommended. What is the correct way to handle screen orientation changes when a TextureView is involved?