SurfaceView示例代码

发布于 2024-10-21 01:00:22 字数 79 浏览 3 评论 0原文

我需要 Android SurfaceView 的示例教程,或者使用它的示例代码(可以共享)。 API 演示对我来说很难理解。有人有替代方案吗?

I need a sample tutorial for the android SurfaceView, or sample code using it that can be shared. The API demos are difficult for me to understand. Does anyone have alternatives?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぶ宁プ宁ぶ 2024-10-28 01:00:22

我的世界地图演示的此提交 app 向您展示从 android.view.View 转换为一个 android.view.SurfaceView 和一个 android.view.SurfaceHolder.Callback

它通过在 SurfaceViewDrawThread 中使用 ViewonDraw() 并通过从 SurfaceViewsurfaceChanged 中调用 ViewonSizeChanged()。它只是使差异更小并且更容易理解。

This commit of my WorldMap demo app shows you the changes necessary to convert from an android.view.View to an android.view.SurfaceView with an android.view.SurfaceHolder.Callback.

It cheats a bit by using the View's onDraw() from within the SurfaceView's DrawThread and by calling the View's onSizeChanged() from within the SurfaceView's surfaceChanged. It just makes the diff smaller and easier to understand.

逐鹿 2024-10-28 01:00:22

我不确定您是否需要 GLSurfaceView,但是 glbuffer 是我最喜欢的例子之一。

这是发生操作的 java 文件: GlBufferActivity

该项目还依赖于本机方法和 NDK,因此它可能不完全是您正在寻找的,但如果您想通过普通 C api 使用 OpenGL,那么它是一个很好的起点。

I'm not sure if you're needing a GLSurfaceView or not, but glbuffer is one of my favorite examples.

This is the java file where the action happens: GlBufferActivity

The project also relies on native methods and the NDK, so it may not be exactly what you're looking for, but it's a great starting point if you want to work with OpenGL via the normal C apis.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文