Lines Matching refs:mTextureView
186 private TextureView mTextureView; field in OverlayDisplayWindow.JellybeanMr1Impl
244 mTextureView.getLayoutParams().width = mWidth; in updateAspectRatio()
245 mTextureView.getLayoutParams().height = mWidth * height / width; in updateAspectRatio()
247 mTextureView.getLayoutParams().width = mHeight * width / height; in updateAspectRatio()
248 mTextureView.getLayoutParams().height = mHeight; in updateAspectRatio()
272 mTextureView = (TextureView)mWindowContent.findViewById( in createWindow()
274 mTextureView.setPivotX(0); in createWindow()
275 mTextureView.setPivotY(0); in createWindow()
276 mTextureView.getLayoutParams().width = mWidth; in createWindow()
277 mTextureView.getLayoutParams().height = mHeight; in createWindow()
278 mTextureView.setOpaque(false); in createWindow()
279 mTextureView.setSurfaceTextureListener(mSurfaceTextureListener); in createWindow()
337 mTextureView.setScaleX(scale); in updateWindowParams()
338 mTextureView.setScaleY(scale); in updateWindowParams()
340 mTextureView.setTranslationX( in updateWindowParams()
341 (mWidth - mTextureView.getLayoutParams().width) * scale / 2); in updateWindowParams()
342 mTextureView.setTranslationY( in updateWindowParams()
343 (mHeight - mTextureView.getLayoutParams().height) * scale / 2); in updateWindowParams()
354 mWindowScale = mTextureView.getScaleX(); in saveWindowParams()