Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small problem. I'm developing a webapp for android and I have been searching tirelessly to find a solution to display a fullscreen mediaplayer when turning the device to landscape (no address bar, just the media).

Much of the stuff out there suggest VideoView which is for native android apps only, however there is not much content on webapp media players and switching to fullscreen. Does anyone know of a solution, or what might work?

Any info sent across is much appreciated and I do apologize if a question has already been answered surrounding this subject.

share|improve this question

2 Answers

If you are developing a web application that's designed specifically for the WebView, you can create interfaces between your JavaScript code and client-side Android code. See this:

http://developer.android.com/guide/webapps/webview.html#BindingJavaScript

You can create a class that would detect the screen rotation and if the device is in landscape mode calls a javascript function that would change the mediaplayer to fullscreen.

share|improve this answer

Just write down in manifest file in Application tag

android:theme="@android:style/Theme.NoTitleBar"

I think it will be helpful for you.

share|improve this answer
and want to full screesn just write NOTitleBarfullscreen – Go2 Jul 17 '12 at 10:51
Thanks for your reply, unfortunately I believe this is for native applications, not for webapps. If you have any other suggestions please pass along. All info welcome. – user1088145 Jul 17 '12 at 10:58
What do u means Native Application ?? i cann't understood – Go2 Jul 17 '12 at 11:00
a native app runs on the actual device OS. A webapp runs on the devices browser, I am developing on the browser. – user1088145 Jul 17 '12 at 11:29

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.