Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8973603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T18:29:02+00:00 2026-06-15T18:29:02+00:00

I want to write Android application that will play HLS video. I use default

  • 0

I want to write Android application that will play HLS video. I use default VideoView control for this:

VideoView player = (VideoView) findViewById(R.id.player);
String httpLiveUrl = "http://example.com/playlist.m3u8";

player.setVideoURI(Uri.parse(httpLiveUrl));
player.setMediaController(new MediaController(this));
player.requestFocus();
player.start();

Everything works fine until you change device orientation (rotate it). In this case Android will destroy current activity with VideoView instance and downloaded HLS fragments. New activity instance will be created from scratch. Hence, VideoView (MediaPlayer) must establish connection and download HLS fragments again (that takes a lot of time). More over, video will be started not from current position, but from beginning.

I know about activity’s methods that helps to save/restore activity’s state like onSaveInstancestate/onRestoreInstanceState, but I have no idea how can I serialize VideoView to carry him through orientation change.

I even thought about Android Service for MediaPlayer… but I think it is bad and incorrect way in case of video player.

So, do anyone have any idea? 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T18:29:03+00:00Added an answer on June 15, 2026 at 6:29 pm

    You can :

    1: Fix the orientation by specifying it in the Manifest file:

     <activity
        android:screenOrientation="landscape">
    ...
    </activity>
    

    2: You can tell android to keep your app running even after orientation changes.
    In this case the activity will not be destroyed and re-created.

     <activity
        android:configChanges="orientation">
    ...
    </activity>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write application on android and windows which will use bluetooth. In
I want to write an Android remote control application that allows people to navigate
I want to write an application that will be running on several phones (android,
I want to write an application for Android devices that interacts with the surface
I want to write an application for Android, a card game that can be
I want to write application on Android that starts in background when user launches
I want to write an android application that can parse files. I have figured
I want to write an Android application that can display some data received(polled) from
I am trying to write an Android application that will take a picture, put
I want to write an application for my android phone to control it via

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.