I am trying to make this VideoView to appear in full screen mode :
public class ViewVideo extends Activity {
private String filename;
private static fina
Perhaps it's because you have to add following code:
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
before setContentView(your_content_view) to get rid of app title bar. I know its a very late reply but somebody might find it useful.