Search code examples
androidandroid-imageviewandroid-textureview

Screencapture:get Bitmap from Textureview and display in imageview android


can anyone suggest me how to get Bitmap from Textureview and display in Imageview

I used following link but it didn't help. Advice on Android TextureView and Bitmap Rendering


Solution

  • Bitmap bitmap = yourTextureView.getBitmap();
    yourImageView.setImageBitmap(bitmap);