mTextureView = (TextureView) findViewById(R.id.textureView);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inMutable=true;
Bitmap myBitmap = BitmapFactory.decodeResource(
getApplicationContext().getResources(),
R.drawable.test1,
options
);
这是示例代码。我想使用我的mTextureView,它持有相机预览,而不是test1.jpg文件。 请帮我解决一下这个。我很绝望。