Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.