Lines Matching refs:lp
488 ViewGroup.LayoutParams lp = mSurfaceView.getLayoutParams(); in updateSize() local
492 lp.width = surfaceWidth; in updateSize()
493 lp.height = surfaceWidth * height / width; in updateSize()
497 lp.width = surfaceHeight * width / height; in updateSize()
498 lp.height = surfaceHeight; in updateSize()
500 Log.i(TAG, "video rect is " + lp.width + "x" + lp.height); in updateSize()
501 mSurfaceView.setLayoutParams(lp); in updateSize()
559 ViewGroup.LayoutParams lp = mPresentationSurfaceView.getLayoutParams(); in updateSize() local
561 lp.width = surfaceWidth; in updateSize()
562 lp.height = surfaceWidth * height / width; in updateSize()
564 lp.width = surfaceHeight * width / height; in updateSize()
565 lp.height = surfaceHeight; in updateSize()
567 Log.i(TAG, "Presentation video rect is " + lp.width + "x" + lp.height); in updateSize()
568 mPresentationSurfaceView.setLayoutParams(lp); in updateSize()