I'm using libVLC for Android 2.0.6.
Code: Select all
public void setPlayerDimensions(int mPlayerWidth, int mPlayerHeight){
/*
Set the players dimensions.
*/
if(mSurfaceView != null) {
android.widget.FrameLayout.LayoutParams params = new android.widget.FrameLayout.LayoutParams(mPlayerWidth, mPlayerHeight, Gravity.LEFT);
mSurfaceView.setLayoutParams(params);
}
}