我正在打电话:
mSurface.lockCanvas(null);
Null是用于提供lockCanvas的可接受参数,指示需要更新整个屏幕。
我正在使用的表面已传递给我,获得该表面的代码通过以下方式实现:
new Surface(mPlaybackView.getSurfaceTexture());
mPlaybackView是从资源中获取的TextureView。调用lockCanvas(null)时,我得到以下信息:
BufferQueueProducer: [unnamed-6903-1] connect(P): already connected (cur=3 req=2)
和
java.lang.IllegalArgumentException at android.view.Surface.nativeLockCanvas (Native Method).
我很沮丧,因为我仍在学习画布和表面等。
这里显然有什么问题吗?
编辑:这是堆栈跟踪。
11-19 09:45:28.075 3319-3319/com.example.eschjen.nov15test D/Jenny: inside try, surface is: Surface(name=android.graphics.SurfaceTexture@10e80e42)/@0x3bc8b489
11-19 09:45:28.086 3319-3319/com.example.eschjen.nov15test E/BufferQueueProducer: [unnamed-3319-0] connect(P): already connected (cur=3 req=2)
11-19 09:45:28.087 3319-3319/com.example.eschjen.nov15test E/Jenny: Exception caught:
java.lang.IllegalArgumentException
at android.view.Surface.nativeLockCanvas(Native Method)
at android.view.Surface.lockCanvas(Surface.java:255)
at com.example.eschjen.nov15test.MediaCodecWrapper.surfaceRender(MediaCodecWrapper.java:469)
at com.example.eschjen.nov15test.MediaCodecWrapper.access$200(MediaCodecWrapper.java:41)
at com.example.eschjen.nov15test.MediaCodecWrapper$1.outputSample(MediaCodecWrapper.java:338)
at com.example.eschjen.nov15test.MediaCodecWrapper.popSampleJenny(MediaCodecWrapper.java:345)
at com.example.eschjen.nov15test.MainActivity$1.onTimeUpdate(MainActivity.java:183)
at android.animation.TimeAnimator.animationFrame(TimeAnimator.java:27)
at android.animation.ValueAnimator.doAnimationFrame(ValueAnimator.java:1248)
at android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:659)
at android.animation.ValueAnimator$AnimationHandler.run(ValueAnimator.java:682)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:767)
at android.view.Choreographer.doCallbacks(Choreographer.java:580)
at android.view.Choreographer.doFrame(Choreographer.java:549)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:753)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
11-19 09:45:28.087 3319-3319/com.example.eschjen.nov15test D/Jenny: done trying
11-19 09:45:28.088 3319-3319/com.example.eschjen.nov15test D/Jenny: done being synchronized.
最佳答案
我认为mPlaybackView
是TextureView
。如果“矩形”矩形无效,则Surface.lockCanvas(rect)
可以引发IllegalArgumentException
。
E / BufferQueueProducer:[unnamed-3319-0] connect(P):已连接
(当前= 3要求= 2)
从TextureView
中的documentation:
可以通过调用获得TextureView的SurfaceTexture
getSurfaceTexture()或通过使用TextureView.SurfaceTextureListener。
重要的是要知道SurfaceTexture仅在
TextureView附加到窗口(并且onAttachedToWindow()具有
因此,强烈建议您使用监听器
在SurfaceTexture可用时得到通知。
重要的是要注意,只有一个生产者可以使用TextureView。例如,如果使用TextureView显示相机预览,则不能使用lockCanvas()同时绘制到TextureView上。
您需要确保与此SurfaceTexture
关联的TextureView
可用于渲染。您可以使用TextureView.isAvailable()
确认。
关于android - Android的Surface类给了我一个“已连接”错误,以及一个IllegalArgumentException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33804521/