我们可以在android中的同一个Activity中使用多个SurfaceView吗?
我是安卓新手。我想知道我们可以在android中的同一个Activity中使用多个SurfaceView吗?
如果有人知道的话请告诉我怎么做?
我被这个问题困住了。
谢谢。
I am new in Android. I want to know Can we use more than one SurfaceView in same Activity in android?
If anybody knows then please tell me how?
I am stuck on this issues.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有这样做,但试试这个..可能
更新
您可以在一个活动中添加多个surfaceView。添加它们就像在 ViewGroup 中添加其他视图一样
I have not did it but try this..May it possible
Updated
You can add more than one surfaceView inside one activity. Add them just like you add other view inside ViewGroup
一个窗口中不能有多个
SurfaceView
。SurfaceView 在当前窗口中打一个“洞”(透视),并将其自己的窗口放置在当前窗口下方,以便可以绘制自己。
同一窗口中不能有多个“洞”。
如果您需要使用多个
SurfaceView
,请为每个 SurfaceView 创建一个Dialog
并将它们放置在Dialog
内。You can't have more than one
SurfaceView
in a Window.A
SurfaceView
punches a "hole" in the current window (seethrough) and places its own window below the current window where it can draw itself.You can't have several "holes" in the same window.
If you need to use several
SurfaceViews
, create aDialog
for each one and place them inside theDialog
.