Android:类似于 CALayer 的东西?

发布于 2024-10-19 18:21:55 字数 192 浏览 0 评论 0原文

我要将 iOS 应用程序移植到 Android。该应用程序有一个部分,其中 UIImageView 的图像是由各种 CALayer 动态组成的。换句话说 - 这是雷达模拟。有些 CALayers 是旋转的,有些是固定的,有些兴趣点根据它们的距离和距视图中心(我的位置)的方向动态定位。

问:在 Android 中如何实现类似的操作?

问候

I'm going to port an iOS app to Android. The app has a part, in which an UIImageView's image is composed dynamically from various CALayers. In other words - it is a radar simulation. Some CALayers are rotating, some are fixed, some points of interest are positioned dynamically according to their distance and heading from the center of the view (my position).

Q: How could that be done similarly in Android?

Regards

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

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

发布评论

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

评论(1

虐人心 2024-10-26 18:21:55

您没有说明您需要什么帧速率,但如果帧速率不是太高,您可以保持相当简单:使用 FrameLayout 以及用于静态和旋转图像的 ImageView 的嵌套列表。要旋转图像,您可以使用动画(请参阅 ImageView.startAnimation)。
对于兴趣点层,您可能需要一个自定义视图,并重写其 onDraw() 方法来添加 POI。

You don't say what framerate you require, but if that's not too high you can keep it fairly simple: Use a FrameLayout, and a nested list of ImageViews for the static and rotating images. To rotate images, you can use an Animation (see ImageView.startAnimation).
For the points-of-interest layer you will probably need a custom View, and override its onDraw() method to add your POIs.

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