1

I have fullscreen activity and video view in my application.

NavigationBar hides automaticaly in 5 seconds, when i don't touch a screen.

I've tried to add onSystemUiVisibilityChangeListener to videoview, and tried setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE), and i had no positive results.

What I need to do to prevent hiding navigationbar?

Android_coder
  • 9,953
  • 3
  • 17
  • 23
Geka
  • 113
  • 1
  • 8

1 Answers1

-1

you can simply add like this.

public class mediaController extends MediaController {
    @Override
    public void hide() {
    }
}
Tamilselvan Kalimuthu
  • 1,534
  • 1
  • 13
  • 28